Double-click double-insert resolutions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:43:07Z http://stackoverflow.com/feeds/question/168181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions 1 Double-click double-insert resolutions? Teflon Ted 2008-10-03T18:19:27Z 2009-03-28T04:44:20Z <p>A team member has run into an issue with an old in-house system where a user double-clicking on a link on a web page can cause two requests to be sent from the browser resulting in two database inserts of the same record in a race condition; the last one to run fails with a primary key violation. Several solutions and hacks have been proposed and discussed:</p> <ol> <li><p>Use Javascript on the web page to mitigate the second click by disabling the link on the first click. This is a quick and easy way to reduce the occurrences of the problem, but not entirely eliminate it.</p></li> <li><p>Wrap the request execution on the sever side in a transaction. This has been deemed too expensive of an operation due to server load and lock levels on the table in question.</p></li> <li><p>Catch the primary key exception thrown by the failed insert, identify it as such, and eat it. This has the disadvantages of (a) vendor lock-in, having to know the nuances of the database-specific exceptions, and (b) potentially not logging/dealing with legitimate database failures.</p></li> <li><p>An extension of #3 by attempting to update the record if the insert fails and checking the result of the update to ensure it returns 1 record affected.</p></li> </ol> <p>Are the other options that haven't been considered? Are there pros and cons of the options presented that were overlooked? Which is the lesser of all evils?</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/168197#168197 4 Answer by Paul Tomblin for Double-click double-insert resolutions? Paul Tomblin 2008-10-03T18:22:57Z 2008-10-03T18:22:57Z <p>Put a unique identifier on the page in a hidden field. Only accept one response with a given unique identifier.</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/168198#168198 0 Answer by Mikael Jansson for Double-click double-insert resolutions? Mikael Jansson 2008-10-03T18:23:12Z 2008-10-03T18:23:12Z <p>It seems you already replied to your own question there; #1 seems to be the only viable option.</p> <p>Otherwise, you should really do all three steps -- data integrity should be handled at the database level, but extra checks (such as the explicit transaction) in the code to avoid roundtrips to the databse could be good for performance.</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/168200#168200 1 Answer by Craig Walker for Double-click double-insert resolutions? Craig Walker 2008-10-03T18:23:17Z 2008-10-03T18:23:17Z <p>It sounds like you might be misusing a GET request to modify server state (although this is not necessarily the case). While it may not be appropriate for you situation, it should be stated that you should consider converting the link into a form POST.</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/301446#301446 0 Answer by John Griffiths for Double-click double-insert resolutions? John Griffiths 2008-11-19T10:15:45Z 2008-11-19T10:15:45Z <p>Looking to avoid this problem on a &lt;button&gt;.</p> <p>Tried</p> <pre><code>document.GetElementBuId('btn').disabled = true; </code></pre> <p>NO Result, button still responds to double click or two click.</p> <p>I have added an event parameter to the function call and used it on the first available line.</p> <pre><code>event.target.disabled = true; </code></pre> <p>NO Result, button still responds to double click or two click.</p> <p>Adding </p> <pre><code>ondblclick="false" ondblclick="return false;" ondblclick="alert('dblclick'); return false;" </code></pre> <p>Still not working.</p> <p>Conclusion : cannot disable double click or two click on FireFox.</p> <p>UNLESS YOU KNOW BETTER.</p> <p>Regards John</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/301496#301496 0 Answer by Harry Lime for Double-click double-insert resolutions? Harry Lime 2008-11-19T10:37:17Z 2008-11-19T10:37:17Z <p>You need to implement the Synchronizer Token pattern.</p> <p>How it works is: a value (the token) is generated on the server for each request. This same token must then be included in your form submission. On receipt of the request the server token and client token are compared and if they are the same you may continue to add your record. The server side token is then regenerated, so subsequent requests containing the old token will fail.</p> <p>There's a more thorough explanation about half-way down <a href="http://www.corej2eepatterns.com/Design/PresoDesign.htm" rel="nofollow">this page</a>.</p> <p>I'm not sure what technology you're using, but Struts provides framework level support for this pattern. See example <a href="http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=58&amp;t=006245" rel="nofollow">here</a></p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/301518#301518 0 Answer by John Griffiths for Double-click double-insert resolutions? John Griffiths 2008-11-19T10:42:49Z 2008-11-19T10:49:43Z <p>REF You need to implement the Synchronizer Token pattern.</p> <p>This is for Javascript/HTML not JAVA</p> <p>Sorry John</p> http://stackoverflow.com/questions/168181/double-click-double-insert-resolutions/692216#692216 0 Answer by campo for Double-click double-insert resolutions? campo 2009-03-28T04:44:20Z 2009-03-28T04:44:20Z <p>Hi John,</p> <p>I have the same problem with an classic ASP system, we had to implement a button disable on forms, which works well. I saw your code had "GetElementBuId", is this a typo? Should it have been "getElementById"? Lower case g and By, not Bu.</p> <p>The problem I have now is if you click back in firefox the buttons are disabled from the previous post of the form. Does any one have any ideas on how to get around this?</p> <p>Cheers!</p>