Re: [JDBC] Retrieving last InsertedID : INSERT... RETURNING safe ?
On 20-Feb-08, at 7:19 AM, Paul Tomblin wrote:
> Dave Cramer wrote: >>> Well, that other solution is dangerous in case multiple inserts >>> to that table are done concurrently; a quite common usage pattern >>> with java web applications handling multiple HTTP requests with >>> concurrent java threads.. >>> >> No it is not dangerous. It is the right way to do it. There is >> absolutely no danger in using currval in this manner. > > Unless you have autocommit on. >
I was going to say there are absolutely no situations where this is
not true, however in your case autocommit or not it doesn't matter.
You have a single connection for the entire application and
asynchronous events using that connection. Autocommit or not it will
not work with currval.
In your case you must use nextval before doing the insert.
Dave
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
Received on Wed Feb 20 07:31:51 2008
This archive was generated by hypermail 2.1.8
: Wed Jun 18 2008 - 23:45:08 EDT
|