Get last insert id of Postgresql

JoeTidee

As per question:

PHP Postgres: Get Last Insert ID

they have stated that the best way to retrieve the last insert id is:

INSERT INTO ....
RETURNING id;

I want to create a wrapper class for Postgresql so that when i run, for example:

$id = $db_wrapper->insert("INSERT...");

that it will always return the last id inserted into variable $id. I do not know the auto_inc column name for queries that will be passed to the insert() function and I would prefer not to have to add "RETURNING id" to the end of all my insert queries - any ideas on how to achieve this?

Always Sunny

PostgreSQL will (by default) create a sequence called 'user_id_seq'. for example if your table name is user. then it is user_id_seq

You can then do something like:

$strTable = "user";
$last_insert_id = $objPDO->lastInsertId("$strTable_id_seq");

See for multiuser-safe methods http://www.postgresql.org/docs/9.0/interactive/functions-sequence.html

See other ways mysql_insert_id alternative for postgresql

EDIT: as per comment of Eli

//if your table name in model is **user**
$strTable = "user";
$model = new User(); 

// do your stuff
$model->save();

$last_insert_id = $model->lastInsertId("$strTable_id_seq");

OR

If your model is called Model, and has a property called id (aka, the PK of the table), then you can acces this way:

//...
$model = new Model();
// do your stuff....
$model->save();

$the_id = $model->id;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Go: How to get last insert id on Postgresql with NamedExec()

From Dev

Get last insert id return null

From Dev

How to get last insert id with Phalcon?

From Dev

how to get the last insert ID in linq

From Dev

Get ID from last insert into table

From Dev

Nodjs sequalize how to get last insert id

From Dev

how to get the last insert ID in linq

From Dev

How to get the ID of the last insert in MVC?

From Dev

insert last id of column in another column table PostgreSQL

From Dev

JPA Spring Boot postgresql : Insert data with the last ID

From Dev

C# Insert MDB Database Get Last Insert ID

From Dev

C# Insert MDB Database Get Last Insert ID

From Dev

How to Get last Insert Id in php without insert any data?

From Dev

how to get last insert id after insert query in codeigniter

From Dev

Getting ID of last insert

From Dev

How can i get the last insert id in the create:: in laravel

From Dev

Is it possible to get LAST_INSERT_ID() from different database?

From Dev

How to get the last row Id after insert data into table for SQLite

From Dev

laravel4 get last insert id outside of model

From Dev

How to get last insert id in Eloquent ORM laravel

From Dev

how to get last id when a row was insert in laravel eloquent in Model

From Dev

MySQL: Get last update id from a table to insert it in an other table

From Dev

How to get last inserted id from insert method laravel 5.1

From Dev

how to get LAST_INSERT_ID via stored procedure in php

From Dev

Get the last id before insert ZF2

From Dev

MySQL: Can't get LAST_INSERT_ID()

From Dev

laravel4 get last insert id outside of model

From Dev

How can i get the last insert id in the create:: in laravel

From Dev

how get last inserted id in multiple record insert?

Related Related

  1. 1

    Go: How to get last insert id on Postgresql with NamedExec()

  2. 2

    Get last insert id return null

  3. 3

    How to get last insert id with Phalcon?

  4. 4

    how to get the last insert ID in linq

  5. 5

    Get ID from last insert into table

  6. 6

    Nodjs sequalize how to get last insert id

  7. 7

    how to get the last insert ID in linq

  8. 8

    How to get the ID of the last insert in MVC?

  9. 9

    insert last id of column in another column table PostgreSQL

  10. 10

    JPA Spring Boot postgresql : Insert data with the last ID

  11. 11

    C# Insert MDB Database Get Last Insert ID

  12. 12

    C# Insert MDB Database Get Last Insert ID

  13. 13

    How to Get last Insert Id in php without insert any data?

  14. 14

    how to get last insert id after insert query in codeigniter

  15. 15

    Getting ID of last insert

  16. 16

    How can i get the last insert id in the create:: in laravel

  17. 17

    Is it possible to get LAST_INSERT_ID() from different database?

  18. 18

    How to get the last row Id after insert data into table for SQLite

  19. 19

    laravel4 get last insert id outside of model

  20. 20

    How to get last insert id in Eloquent ORM laravel

  21. 21

    how to get last id when a row was insert in laravel eloquent in Model

  22. 22

    MySQL: Get last update id from a table to insert it in an other table

  23. 23

    How to get last inserted id from insert method laravel 5.1

  24. 24

    how to get LAST_INSERT_ID via stored procedure in php

  25. 25

    Get the last id before insert ZF2

  26. 26

    MySQL: Can't get LAST_INSERT_ID()

  27. 27

    laravel4 get last insert id outside of model

  28. 28

    How can i get the last insert id in the create:: in laravel

  29. 29

    how get last inserted id in multiple record insert?

HotTag

Archive