// db is the database object that is usually initialise with openDatabase() function db.transaction(function (tx) { // insert each record $.each(myArray, function (i, item) { tx.executeSql("INSERT INTO MyTable(name, value) VALUES (?, ?)", [item.name, item.value]); }); }, // error function (error) { . . . }, // success - the transaction() function does not pass any object to its success callback function () { . . . });
Web SQL does not understand the Standard SQL bulk insert syntax such as
Insert Into tbl (col1, col2) Values ('val1', 'val2'), ('val3', 'val4'), ...
but each insert statement needs to be executed using executeSql() function. A transaction is usually used to wrap these insert commands.
No comments:
Post a Comment