如何在ionic3上的sqlBatch sqlite数据库中运行多个查询?

时间:2017-11-16 11:56:35

标签: sqlite ionic3

我有三个选择查询,我想在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中运行所有三个查询。 请帮忙。 感谢。

0 个答案:

没有答案