Skip to content

Repository files navigation

React Native SQLCipher 2

SQLCipher Native Plugin for React Native for Android/iOS. This plugin provides a WebSQL-compatible API to store data in a react native app, by using a SQLCipher database on the native side.

Forked from React native SQlite 2

Getting started

$ npm install react-native-sqlcipher-2 --save

Mostly automatic installation

$ react-native link react-native-sqlcipher-2

Additional step for iOS

Add the following to your Podfile

pod 'SQLCipher'

Usage

importSQLite,{encodeName}from'react-native-sqlcipher-2';constdb=SQLite.openDatabase(encodeName('test.db','testpassword'),'1.0','',1);db.transaction(function(txn){txn.executeSql('DROP TABLE IF EXISTS Users',[]);txn.executeSql('CREATE TABLE IF NOT EXISTS Users(user_id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(30))',[]);txn.executeSql('INSERT INTO Users (name) VALUES (:name)',['nora']);txn.executeSql('INSERT INTO Users (name) VALUES (:name)',['takuya']);txn.executeSql('SELECT * FROM `users`',[],function(tx,res){for(leti=0;i<res.rows.length;++i){console.log('item:',res.rows.item(i));}});});

There is a test app in the test directory.

Using with PouchDB

It can be used with pouchdb-adapter-react-native-sqlite.

importPouchDBfrom'pouchdb-react-native'importSQLite,{encodeName}from'react-native-sqlcipher-2'importSQLiteAdapterFactoryfrom'pouchdb-adapter-react-native-sqlite'constSQLiteAdapter=SQLiteAdapterFactory(SQLite)PouchDB.plugin(SQLiteAdapter)vardb=newPouchDB(encodeName('test','testpassword'),{adapter: 'react-native-sqlite'})

About

SQLCipher Native Plugin for React Native for iOS and Android.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages