Initial Commit

This commit is contained in:
Rahul Pandey
2014-04-10 16:08:44 +05:30
commit ba2c4879a6
5 changed files with 261 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
var exec = require('cordova/exec');
exports.copy = function(dbname, success, error) {
exec(success, error, "sqlDB", "copy", [dbname]);
};