我有这个脚本来更新我的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)
}