How to get last inserted row id from sqlite in phonegap android

Neerav Shah

I am creating an app in which i am inserting a data in the table. After inserting the data in the table i want to get the id of that row so i can do further operation depending on it. I tried to use last_insert_rowid() function of sqlite but found no luck. can any one tell which is the best way to get last inserted row id. Any idea is appreciated. Thanks in advance.

Ross

You can get the id of the last insert on a table like this -

tx.executeSql("INSERT INTO profile('name','label','list_order','category') values(?,?,?,?)", 
    [currentProfile.name, currentProfile.label, currentProfile.list_order, currentProfile.category], 
    function(tx, results){
        var lastInsertId = results.insertId; // this is the id of the insert just performed
    }, 
    failCB
)

The results.insertId in WebSQL is similar to mysql_insert_id() in MySQL -

mysql_query("INSERT INTO mytable (product) values ('kossu')");
printf("Last inserted record has id %d\n", mysql_insert_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

How to get last inserted row id from sqlite in phonegap android

From Dev

How to get last inserted row in SQlite android

From Dev

Sqlite query in Android to get the last inserted row by other id

From Dev

How to get last inserted inserted row id from PDO

From Dev

how to get id of last inserted row

From Dev

How to get last inserted row from a table?

From Dev

How to get id(Auto increment) of last row inserted

From Dev

How to get last inserted ID to update the SAME row in a table?

From Dev

The last inserted row id in database is successfully inserted but to get that id is 0?

From Dev

How to get last inserted row value from a column in string format?

From Dev

Get the last inserted row ID (HFSQL)

From Dev

How to get last inserted id from insert method laravel 5.1

From Dev

How to get the id of the row inserted from PG::Result

From Dev

Get last inserted ID from mysql table

From Dev

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

From Dev

Codeigniter:How to get the last inserted id?

From Dev

How to get last inserted id in Laravel?

From Dev

Codeigniter:How to get the last inserted id?

From Dev

How to get last inserted id using AJAX?

From Dev

How to get ID of row inserted in C#

From Dev

Getting id of last inserted row

From Dev

Get last inserted Id returns 0 if the row already exists

From Dev

PHP MySQL PDO: get last inserted ROW not ID

From Dev

Unable to get the last inserted data from sqlite table

From Dev

Get specific column from the last inserted row with PDO

From Dev

Android SQLite Database with Inserted row

From Dev

Linq get last ID inserted

From Dev

How do I get the last inserted id from a MySQL database table?

From Dev

mysql how to get the last inserted row values in a trigger

Related Related

  1. 1

    How to get last inserted row id from sqlite in phonegap android

  2. 2

    How to get last inserted row in SQlite android

  3. 3

    Sqlite query in Android to get the last inserted row by other id

  4. 4

    How to get last inserted inserted row id from PDO

  5. 5

    how to get id of last inserted row

  6. 6

    How to get last inserted row from a table?

  7. 7

    How to get id(Auto increment) of last row inserted

  8. 8

    How to get last inserted ID to update the SAME row in a table?

  9. 9

    The last inserted row id in database is successfully inserted but to get that id is 0?

  10. 10

    How to get last inserted row value from a column in string format?

  11. 11

    Get the last inserted row ID (HFSQL)

  12. 12

    How to get last inserted id from insert method laravel 5.1

  13. 13

    How to get the id of the row inserted from PG::Result

  14. 14

    Get last inserted ID from mysql table

  15. 15

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

  16. 16

    Codeigniter:How to get the last inserted id?

  17. 17

    How to get last inserted id in Laravel?

  18. 18

    Codeigniter:How to get the last inserted id?

  19. 19

    How to get last inserted id using AJAX?

  20. 20

    How to get ID of row inserted in C#

  21. 21

    Getting id of last inserted row

  22. 22

    Get last inserted Id returns 0 if the row already exists

  23. 23

    PHP MySQL PDO: get last inserted ROW not ID

  24. 24

    Unable to get the last inserted data from sqlite table

  25. 25

    Get specific column from the last inserted row with PDO

  26. 26

    Android SQLite Database with Inserted row

  27. 27

    Linq get last ID inserted

  28. 28

    How do I get the last inserted id from a MySQL database table?

  29. 29

    mysql how to get the last inserted row values in a trigger

HotTag

Archive