part1
- /****************第一步 命令行安装*******************/
- //在命令行中进入项目目录 输入下面进行安装
- ionic cordova plugin add cordova-sqlite-storage
- npm install –save @ionic–native/sqlite
- /****************第二步 加入到代码中*******************/
- //在 ./src/app/app.module.ts 中添加
- import {SQLite} from “@ionic-native/sqlite”;
- //在 provides 中添加
- SQLite,
- /****************第三步 模块中*******************/
- //在要使用的模块中添加
- import {SQLite,SQLiteObject} from “@ionic-native/sqlite”;
- //在constructor中加入
- private sqlite: SQLite
- //在代码中使用
- this.sqlite……
part2
/*************链接sqlite数据库***************/
this.sqlite.create({name: ‘cheshiname.db’,location: ‘default’}).then(
(db: SQLiteObject) => {
this.myAppDatabase = db;
}
).catch(
e =>this.dd=’写入数据库失败2′
);
/*************分析***************/
name —- 数据库名称
location —- 链接地址
then() —- 链接成功返回值
catch() —- 链接失败返回值
db —- 链接对象