ionic添加cordova插件-SQLite

来源:互联网 发布:怎么更改mac管理员名称 编辑:程序博客网 时间:2024/06/06 02:46

SQLite
调用SQLite本地数据库储存接口

cordova plugin add https://github.com/litehelpers/Cordova-sqlite-storage.git

Example

module.controller('MyCtrl', function($scope, $cordovaSQLite) {  var db = $cordovaSQLite.openDB({ name: "my.db" });  // for opening a background db:  var db = $cordovaSQLite.openDB({ name: "my.db", bgType: 1 });  $scope.execute = function() {    var query = "INSERT INTO test_table (data, data_num) VALUES (?,?)";    $cordovaSQLite.execute(db, query, ["test", 100]).then(function(res) {      console.log("insertId: " + res.insertId);    }, function (err) {      console.error(err);    });  };});
0 0