knex/clients/web/cordova.js
Tim Griesser 3c8d08a64b Removing unnecessary UMD
When this eventually enabled on the client side,
we can build this into the build script.
2013-11-27 16:51:01 -05:00

17 lines
281 B
JavaScript

// SQLite3 - Cordova (PhoneGap)
// ----------
var Sqlite3 = require('../base/sqlite3');
var Cordova = Sqlite3.extend({
query: function() {
},
getConnection: function() {
window.openDatabase(/* name, version, display_name, size */);
}
});
module.exports = Cordova;