I need to insert two records into a Oracle DB, which are linked via object id's which are generated from a sequence. So, the code would be: Create Record1 Set Record1.Id = some sequence Create Record2 Record2.Link = Record1.Id But, once I have created record1 how do I know which record was created, or with which sequence? Please help. snisar@caluk.com
Brian Nice
Ranch Hand
Joined: Nov 02, 2000
Posts: 195
posted
0
Can you just run a SELECT statement to get the sequence number and store it in a variable for later use? long sequenceNum = 0; ResultSet rs = Statement.executeQuery("select sequence_name.nextval from dual"); if (rs.next() ) sequenceNum = rs.getLong(1); Brian
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.