Using Java to find value of nextval
I am inserting a row into an Oracle database using jdbc as stmt.executeQuery ("insert into tblXXX values(seque...
Continue Reading This Article
Enjoy this article as well as all of our content, including E-Guides, news, tips and more.
nceX.nextval,.....)");
Now I want to get the actual value of the first field (sequenceX.nextval) that has been inserted into the database that I want to subsequently use in my Java application. How can I acheive this in Java?
stmt.executequery("select sequencex.currval from dual");
Note currval will only work after nextval has been executed in the same session.