I'm working with the PhoneGap Open Database API. According to this documentation values should be inserted into an existing table using the follow code
function populateDB(tx) {
tx.executeSql('DROP TABLE IF EXISTS DEMO');
tx.executeSql('CREATE TABLE IF NOT EXISTS DEMO (id unique, data)');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (1, "First row")');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (2, "Second row")');
}
function errorCB(tx, err) {
alert("Error processing SQL: "+err);
}
function successCB() {
alert("success!");
}
var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
db.transaction(populateDB, errorCB, successCB);
This works fine but now I'm trying to pass a variable to the populateDB function. When I try the code below
var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
db.transaction(populateDB("test variable"), errorCB, successCB);
the "test variable" string goes through but tx is undefined. Does anyone know how to do this?
I think the only way you could do this would be write a function that returns a function that makes use of the passed in value. Something along the lines of :
You could then try passing makeMyDB(x) as the first argument.