nativescript-sqlcipher

1.1.11 • Public • Published

Nativescript Sqlcipher

A sqlcipher module for nativescript application.
Inspired by NathanaelA/Nativescript-Sqlite

Create/Open Database

Before creating database, nativescript-sqlcipher module must be imported.
var Database = require('nativescript-sqlcipher');
Then create a new database:
var sqlcipher = new Database(dbname, options, callbackFn)
where in nativescript-sqlite module, options only support readOnly property where now options can read key property as PRAGMA Key for database encryption.

  var options = {
    readOnly: false,
    key: 'Password'   // key must be a string
  }

If property key is missing, or in a wrong format. Database would not be encrypted.

Example

  var Database = require('nativescript-sqlcipher');
 
  var options = {
    key: 'Password'
  }
  var sqlcipher = new Database('myDatabase', options);  //sqlcipher is a Promise type
  sqlcipher
    .then( (db)=>{
      db.execSQL('CREATE TABLE my_first_table (name TEXT, age INTEGER);');
    }) 
    .catch( (err)=>{
      alert('Database creation failed.');
    })

Update Log

01 Dec 2017

Fixed Compiling Error in Xcode 9

06 Oct 2017

Added all updates to sqlcipher.ios.js from NathanaelA/Nativescript-Sqlite.

Package Sidebar

Install

npm i nativescript-sqlcipher

Weekly Downloads

2

Version

1.1.11

License

MIT

Last publish

Collaborators

  • jackywang