在ionicframework中获取sqlite的table_info的意外标记

时间:2017-08-23 08:17:05

标签: angularjs ionic-framework sqlite

我已经使用PRAGMA table_info来获取离子框架中特定表的信息,但是当我尝试编译它时,我在table_info.But中获取错误作为意外令牌,当我在数据库浏览器中尝试相同的查询时(SQLite)我得到了结果。

我在我的应用中使用了CordovaSQLite插件。

PRAGMA table_info(contacts)

1 个答案:

答案 0 :(得分:0)

尝试在像这样的查询中提供它

$cordovaSQLite.execute(self.db, 'PRAGMA table_info(category)').then(function (res) {
    for (var i = 0; i < res.rows.length; i++) {
      if (res.rows.item(i).name === 'is_deleted') {
        hasISDeleted = true;
      }
    }
    if (hasISDeleted === true) {
      $log.log('going to update category');
      var query = 'UPDATE category SET is_deleted = ? WHERE is_deleted IS NULL';
      prom = $cordovaSQLite.execute(self.db, query, ['false']).then(function (res) {
        console.log(res);
        $log.log('category response', res);
      });
      $log.log('category prom', prom);
      proms.push(prom);
      $q.all(proms).then(function () {
        defer.resolve('Sucess');
      });
    } else {
      defer.resolve('Sucess');
    }
  });

希望它能奏效。