node-sqlcipher icon indicating copy to clipboard operation
node-sqlcipher copied to clipboard

SQLCipher bindings for Node

Results 22 node-sqlcipher issues
Sort by recently updated
recently updated
newest added

I tried to add to mozilla-iot code , @ry @journeyapps/sqlcipher gateway/build/webpack:/src/sqlcipher/lib sync:2 var e = new Error("Cannot find module '" + req + "'"); ^ Error: Cannot find module gateway/src/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node'...

``` const Sequelize = require("sequelize"); const db = new Sequelize({ dialect: 'sqlite', storage: path.join(process.cwd(), "sample.db"), dialectModulePath: '@journeyapps/sqlcipher', logging: false, define: { freezeTableName: true } }); db.query("PRAGMA key = 'password'"); ```...

I want to webpack package for arm64 on linux ,But when I use 5.3.1, webpack electron,it cannot build source.

The ARM64 version of the Node library is required on Linux.

![图片](https://user-images.githubusercontent.com/1849037/185057799-20ae7cab-fe47-4b06-be54-30132f58ef7c.png) ``` find node_modules/@journeyapps/sqlcipher/lib/binding/ -type f | xargs ldd node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node) node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node) node_modules/@journeyapps/sqlcipher/lib/binding/napi-v6-linux-x64/node_sqlite3.node: /lib64/libstdc++.so.6: version...

Platform=linux, Distro=Debian Node Version : v20.5.0 Yarn Version : 1.22.19 NPM Version : 9.8.1 Electron : v28.2.2

node-pre-gyp WARN Tried to download(404): https://journeyapps-node-binary.s3.amazonaws.com/@journeyapps/sqlcipher/v5.1.0/napi-v6-linux-arm64.tar.gz node-pre-gyp WARN Pre-built binaries not found for @journeyapps/[email protected] and [email protected] (electron-v20.0 ABI, glibc) (falling back to source compile with node-gyp) gyp WARN install got...

Hi, there weren't any changes to the code in more than two years and issues do not receive responses by the maintainer anymore. Is this project abandoned? If so -...

I am encountering an issue with the sqlcipher module throwing up an error, when used in the Capacitor/SQLite plugin for publishing through Electron as detailed here: https://github.com/capacitor-community/sqlite/issues/421 The dependency error...

The database is created via the following code. ```Javascript export function createDatabase(filePath: string, password: string): Promise { return new Promise((resolve): void => { let database: Database = new Database(filePath, async...