从get()的doc:
使用指定的参数运行SQL查询,然后使用第一个结果行调用回调.
你必须使用db.all():
db.serialize(function () { db.all("select name from sqlite_master where type='table'", function (err, tables) { console.log(tables); }); });
或者db.each()如果要为每一行调用回调:
db.serialize(function () { db.each("select name from sqlite_master where type='table'", function (err, table) { console.log(table); }); });