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

SQLite3 bindings for Node.js

Results 100 node-sqlite3 issues
Sort by recently updated
recently updated
newest added

Transactions can be performed either using - db.exec("BEGIN TRANSACTION; ... ; COMMIT") - When creating multi-statement strings, I cannot find a way to escape the values using sqlite3. It would...

feature request

### Issue Summary The following crash occurs when a promise doesn't resolve and the SQLite file cannot be opened: - Version 4.2.0 is not affected - The crash occurs with...

bug

Hey! :) I like the API you use as is - it reminds me of what Selenium-Webdriver did for Node.js as well. (Read below). But I am wondering if this...

feature request
help wanted

### Summary With sqlite3_expanded_sql() you can retrieve the expanded version of the sql statement with the bindings. This is useful mostly for debugging purposes but could be useful if one...

feature request
pr wanted

### Issue Summary On arm64 proc. computer: - install of [email protected] succeeds; - install of [email protected] succeeds; - generate program with pkg succeeds: pkg -t node12-linux-arm64 index.js -o prog_name When...

install problem

### Issue Summary I have 2 processes, one stores stuff on the sqlite db the other reads. I'm not using wal and I think I don't need to because writes...

bug

### Issue Summary I know perfectly well that this may not be the ideal place to ask these kinds of questions, and I apologize in advance for my limited knowledge...

install problem
question

### Issue Summary I get the following error when trying to use sqlite3 ``` \\?\C:\Name\Desktop\MovieNode - nwjs-sdk-v0.67.1-win-x64\node_modules\sqlite3\lib\binding\napi-v6-win32-unknown-x64\node_sqlite3.node at Module._extensions..node (node:internal/modules/cjs/loader:1249:18) at Module.load (node:internal/modules/cjs/loader:1022:32) at Module._load (node:internal/modules/cjs/loader:863:12) at Module.require (node:internal/modules/cjs/loader:1046:19) at...

bug

### Summary Would it be possible to include a prebuilt binary for win32/arm64? Devices in this category are the more recent Surface Pro lines. ### Proposed implementation - napi-v6-win32-unknown-arm64 -...

feature request

I'm looking a way to get the resultset metadata for a generic query. I mean, I don't need to get the information schema about a table but I want to...