Forked from orbitaloop/executeSqlBridgeForPhonegapSQLitePlugin.js
Created
September 26, 2012 16:31
-
-
Save gotomanners/3789031 to your computer and use it in GitHub Desktop.
executeSql Bridge For PhonegapSQLitePlugin (because there are some differences between the WebSQL API and the plugin)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* to use WebSQL or the SQLite plugin (https://github.com/davibe/Phonegap-SQLitePlugin) with the same function) */ | |
executeSqlBridge: function(tx, sql, params, dataHandler, errorHandler) { | |
var self = this; | |
if (typeof self.db.dbPath !== 'undefined') { | |
//Native SQLite DB with phonegap : https://github.com/davibe/Phonegap-SQLitePlugin/ | |
//this is a native DB, the method signature is different: | |
var sqlAndParams = [sql].concat(params); | |
var cb = function(res) { | |
//in WebSQL : result.rows.item(0) | |
//in the phonegap plugin : res.rows[0] | |
res.rows.item = function(i) { | |
return this[i]; | |
}; | |
//the result callback hasn't the tx param | |
dataHandler(tx, res); | |
}; | |
tx.executeSql(sqlAndParams, cb, errorHandler); | |
} else { | |
//Standard WebSQL | |
tx.executeSql(sql, params, dataHandler, errorHandler); | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment