i just created a java file to parse a csv files and saved them into an oracle database.. but i need a field ID which acts as a primary key.. and i am a bit confused abt looping..
feedback
|
|
I think all you need to do is utilize a sequence (as suggested by Ronnis) as such
Now either in your java app where you are saving the data:
OR Now if you are using a procedure (or a procedure within a package) you can do this (note this returns the primary key back to the calling app)
no looping required assuming you are already looping in your java code (assuming a row-by-row insert) OR You may use a trigger to insert a new value into the table: create or replace
| ||||
|
feedback
|