KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
node-sqlcipher
★ 14
Open GitHub ↗
SQLcipher binding for NodeJS
Download README (.md)
Explore Similar Repositories
parseuri
:
Module for parsing URI's in engine.io-client
SWFTools-Core
:
SWF decompiler and basic player
rack-timing
:
Such timestamps for your Rails app rack stack. wow
a3-chaoyu-aniket
:
Global Terrorism Visualization
lazybone-templates
:
My Lazybone Templates
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
node-sqlcipher
?
Download (.md)
# NAME node-sqlicipher - Asynchronous, non-blocking [SQLite3](http://www.sqlite.org/) + [SQLcipher](http://sqlcipher.net//) bindings for [Node.js](http://nodejs.org/) 0.2-0.4 (versions 2.0.x), **0.6.13+, 0.8.x, and 0.10.x** (versions 2.1.x). it's a fork of [node-sqlite3](https://github.com/mapbox/node-sqlite3) with sqlcipher library # USAGE ``` js var sqlite3 = require('sqlcipher').verbose(); var db = new sqlite3.Database('test.db', 'password'); db.serialize(function() { db.run("CREATE TABLE lorem (info TEXT)"); var stmt = db.prepare("INSERT INTO lorem VALUES (?)"); for (var i = 0; i < 10; i++) { stmt.run("Ipsum " + i); } stmt.finalize(); db.each("SELECT rowid AS id, info FROM lorem", function(err, row) { console.log(row.id + ": " + row.info); }); }); db.close(); ``` This is in early stage but it works !! ------------------------------------- Currently you need to have libsqlcipher.so.0.8.6 compiled and installed in your system library path !! Will be fixed soon