How do I get the sequence number of the row just inserted?
|
|
insert ... returning.
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. |
|||
|
|
|
|
This has a comprehensive solution. |
||
|
|
|
If I had any credibility points, I'd have given points to Mark Harrison's solution. The RETURNING clause is definitely the way to go. |
||
|
|
