SQLite database plugin for NativeScript applications, enabling local data storage on Android and iOS. Current version 1.3.0 is stable but shows low maintenance activity. Provides synchronous API with openOrCreate, execute, transaction, and deleteDatabase functions. Differentiates from nativescript-sqlite by offering TypeScript types and a minimal API surface, but lacks active community support and modern async patterns.
npm install nativescript-mtmobile-sqliteNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates openOrCreate, execute SQL statements, and deleteDatabase cleanup.
Wrap calls in setTimeout or use a web worker/background thread.
Always call cancelTransaction on error to rollback, or handle in the transaction callback.
Normalize result handling per platform or use a wrapper library.
Ensure openOrCreate returns a valid database object; check import path.
Ensure CREATE TABLE statement is executed before SELECT/INSERT.
Use a single database instance and avoid calling deleteDatabase concurrently.
No dependency data recorded yet.