- How to send an HTML5 sqlite result set to a server via AJAX
- db.transaction(
- function(transaction) { transaction.executeSql(
- 'SELECT col1, col2, col3 FROM table;',
- [],function(transaction, result){
- //package the result in here somehow to send to the server via AJAX
- },errorHandler);
- JSON.stringify(result);