About 50 results
Open links in new tab
  1. Difference between sqlite and better-sqlite3 implementation

    What's the difference between sqlite and better-sqlite3 implementations? I have to use better-sqlite3 to create a database for a form (+ only node.js and express), but the only clear example I found uses …

  2. Cannot find module 'better-sqlite3' after building Electron Forge Vite ...

    Mar 30, 2025 · I'm trying to develop an Electron Forge Vite app that uses better-sqlite3 as database. It works fine in development environment but after I build a .deb package to test it outside development …

  3. Updating a value in SQL (better-sqlite3) with Node.JS

    Mar 2, 2019 · I cannot find a function called query() in the better-sqlite3 API for the Database class. I think that you would need to prepare() a Statement object, then run() it.

  4. better-sqlite3 - compiled against a different Node.js - discord.js bot

    Aug 29, 2022 · better-sqlite3 - compiled against a different Node.js - discord.js bot Ask Question Asked 3 years, 6 months ago Modified 2 years, 11 months ago

  5. Dockerfile for sqlite3 solving the error with better-sqlite3

    Apr 1, 2024 · the project uses nodejs version 16, typeorm version 0.3.20, better-sqlite3 version ^9.4.1, I also need a deployment file for this project to use it with Kubernetes.

  6. What is the right way to mix `better-sqlite3` and async code?

    May 23, 2025 · What is the right way to mix `better-sqlite3` and async code? Asked 7 months ago Modified 7 months ago Viewed 194 times

  7. Error: Could not locate the bindings file better-sqlite3.node

    Jun 23, 2018 · The Problem There are some problem with maybe my installation of better-sqlite3 because when I try to execute my index.js (click to show it on pastebin) with node index.js there is …

  8. cannot install better-sqlite3 with build-from-source because electron ...

    Sep 17, 2022 · I want to update better-sqlite3 in my Electron App. Because of some lags between Nodejs, Electron and better-sqlit3 releases, I need to manually install better-sqlite3 with this …

  9. pnpm - How do I depend on prebuilt Node.js binaries of better-sqlite3 ...

    Apr 12, 2024 · The better-sqlite3 site says there are pre-built binaries. (Because I use TypeScript, I also want to use @types/better-sqlite3 which seems to only be available for better-sqlite3 version 7.

  10. How to correctly and fully import BetterSqlite3's Database class in ...

    Apr 3, 2021 · I have some code that uses better-sqlite3 and I am trying to port it to typescript. Relevant parts of the original javascript code look like this: import Database from "better-sqlite3"; ...