User-1578974752 posted
I have created the sequence with name ID_sn in oracle
Now this statemnet will insert the next value in to the database.
cmd.CommandText = "insert into packa(ID) values (ID_sn.NEXTVAL)"
cmd.ExecuteNonQuery()
HOW can i store this value in to a text box?There may be multiple inserts at a time. Appreciate the help.