How do I get the sequence number of the row just inserted?
|
insert ... returning.
"seq" here refers to the name of the column whose value you want to store into variable s2. in python:
|
||||
|
|
|
Edit: as Mark Harrison pointed out, this assumes that you have control over how the id of your inserted record is created. If you have full control and responsibility for it, this should work... Use a stored procedure to perform your insert and return the id. eg: for a table of names with ids:
Using stored procedures for CRUD operations is a good idea regardless if you're not using an ORM layer, as it makes your code more database-agnostic, helps against injection attacks and so on. |
||||
|
|
|
My answer in C#, considering that table "testtable" has an "ID" collumn as PK with an autoinc sequence and field "testname" is a varchar field.
|
|||
|
|
|
This has a comprehensive solution. |
|||
|