How do I go about getting the last inserted (autoincremented) ID when writing to a WebSQL DB in Javascript for Phonegap?
I thought it may have been possible using the commented out snippet below.
Here is the structure of the table:
tx.executeSql('CREATE TABLE IF NOT EXISTS locations (id INTEGER PRIMARY KEY, lTitle TEXT, lDeleted INTEGER DEFAULT 0)');
And here is where I am writing the row to the table:
tx.executeSql(
'INSERT INTO locations (lTitle) VALUES (?)',
[$('#newLocation').val()],
function(tx, results){
//alert('Returned ID: ' + results.rows.item(0).id);
},
errorCB
);
How do I go about getting the last inserted (autoincremented) ID when writing to a WebSQL DB in Javascript for Phonegap?
I thought it may have been possible using the commented out snippet below.
Here is the structure of the table:
tx.executeSql('CREATE TABLE IF NOT EXISTS locations (id INTEGER PRIMARY KEY, lTitle TEXT, lDeleted INTEGER DEFAULT 0)');
And here is where I am writing the row to the table:
tx.executeSql(
'INSERT INTO locations (lTitle) VALUES (?)',
[$('#newLocation').val()],
function(tx, results){
//alert('Returned ID: ' + results.rows.item(0).id);
},
errorCB
);
Share
Improve this question
asked Jul 22, 2012 at 2:26
FraserFraser
14.2k22 gold badges76 silver badges119 bronze badges
1 Answer
Reset to default 32I was close. This does the trick:
tx.executeSql(
'INSERT INTO locations (lTitle) VALUES (?)',
[$('#newLocation').val()],
function(tx, results){
alert('Returned ID: ' + results.insertId);
},
errorCB
);