我有三个选择查询,我想在ionic3中使用sqlite sqlBatch一次性运行。以下是示例查询。
sql1 = "select * from projects";
sql2 = "select * from user_comments"
sql3 = "select * from notes"
db.sqlBatch([], function() {
}, function(error) {
console.log(error.message);
});
如何在sqlBatch中运行所有三个查询。 请帮忙。 感谢。