node-sqlite3
node-sqlite3 copied to clipboard
SQLite3 bindings for Node.js
### Issue Summary Hello there. Well, i have a mobil app project, and need to work with node.js and react native. i choose the expo approach. i installed node and...
### Summary # Suggestion Use [prebuildify](https://github.com/prebuild/prebuildify) instead of prebuild-install. Unlike prebuild-install, prebuildify ships all precompiled binaries with the package This simplifies deployment by a lot, since now, no matter what...
### Issue Summary This vscode extension is meant to create or read from an sqlite database on activation using the node-sqlite3 module. However, when debugging, the following error appears: `Activating...
### Issue Summary I am using the sqlite3 package in my Nodejs application. But when I run it, I get a walid win32 app error. Although I tried many ways,...
### Issue Summary When using the `cached.Database` function, and when providing a callback for error detection, multiple failed attempts to open the same database file will only call the first...
I want `IN` operator to work correctly with array params, for example: `SELECT * FROM table WHERE table.id IN ($1)` I would like $1 to be: `$1 = [1, 2,...
I have a conditional insert statement that only inserts a new row into table `items` if a row with matching ID exists in table `lists`. When executed with a list...
Hello everyone I found that I have troubles using parametrized insert statements with version 4.1.0. Here's a basic example demonstrating the error: ```javascript let sqlite3 = require("sqlite3"); let data =...