Nativescript更改sqlite db文件位置

时间:2017-10-20 07:30:44

标签: sqlite nativescript angular2-nativescript

这是我目前的代码:

new Sqlite("test.db", function(err, db) {
  console.log("Is a Sqlite Database:", Sqlite.isSqlite(db) ? "Yes" : "No); 
});

它有效,但我需要将数据库保存在单独的文件夹中。并使用app文件夹中的所有文件。我试过这个:

new Sqlite("../db/test.db", function(err, db) {
  console.log("Is a Sqlite Database:", Sqlite.isSqlite(db) ? "Yes" : "No); 
});

但它不起作用。如何正确指出位置。 我当前的文件是app / company / data.ts。 db位于app / db / test.db

是新手,如果您需要更多新信息,请发表评论。

0 个答案:

没有答案