nativeScript-mtmobile-sqlite
SQLite for Nativescript
npm i --save nativeScript-mtmobile-sqlite

Nativescript: MtMobile Sqlite

Build Status npm version

安装

tns plugin add nativescript-mtmobile-sqlite

使用

你应该注意将 sqlite 调用包装到你喜欢的异步选项(promises、observables、async/await)中。并捕获抛出的任何异常。

import { openOrCreate, deleteDatabase } from "nativescript-mtmobile-sqlite";

const sqlite = openOrCreate("path/to/db");
sqlite.execute("CREATE TABLE names (id INT, name TEXT)");
sqlite.transaction(cancelTransaction => {
// Calling cancelTransaction will rollback all changes made to db
names.forEach((name, id) =>
sqlite.execute(
"INSERT INTO names (id, name) VALUES (?, ?)",
[id, name]
)
);
});