在ionic 2中更新语法SQLite

时间:2017-11-15 07:09:50

标签: angular sqlite ionic2

我有这个脚本来更新我的SQLite表, 我不知道为什么它不起作用我编辑了我的查询脚本但仍然无法正常工作

try{
    this.sqlite.create({
    name: 'msc.db',
    location: 'default'
  })
  .then((db: SQLiteObject) => {
     db.executeSql('update member set email = '+email+', phone= '+phone+'',{})
      .then(() => console.log('Truncate Table Success'))
      .catch(e => console.log(e));
  })
}catch(err){
  alert(err)
}

1 个答案:

答案 0 :(得分:1)

始终使用参数化查询。检查样本here。您正在将Cordova-sqlite-storage与离子原生SQLite一起使用。

dialogView