0
我是新的離子2/3。哪裏可以找到Ionic2/3項目中的SQLite數據庫?
我已經爲我的ionic2項目創建了SQLite數據庫。
我已經使用瞭如下創建SQLite數據庫
this.sqlite.create({name: "data.db", location: "default"}).then((db: SQLiteObject) => {
this.database = db;
this.createTables();
}, (error) => {
console.log("ERROR: ", error);
});
async createTables() {
try {
await this.database.executeSql(this.userTable, {});
} catch (e) {
console.log("Error !", e);
}
}
代碼工作,數據庫打開data.db文件代碼。
我想獲得由我的ionic-SQLite項目創建的data.db
文件。所以,我可以在SQLiteStudio中以GUI形式打開它來顯示數據庫。
Android中數據庫的默認位置是'/ data/app.package.name/databases/db_file_name.db'我不確定離子,但大多數情況下會是相同的 – Yazan