neoxpert
neoxpert
Can you provide more information about what you are trying to do? Which NodeJS / Electron version are you using. How does the code looks like, that can reproduce the...
Just out of curiosity, as there is nothing happening on the way down from setting the timeout on a new Database instance in JavaScript into the actual C function of...
Well, better-sqlite3 is not actually a part of the package but only referenced as a required dependency. This will cause the automatics of prebuild-install to take over and try to...
These are not actual errors, but side effects based on user setups, which are not covered by the setup toolchain for prebuilt binaries. As better-sqlite3 is a native module, it...
What is the actual usecase you are trying to cover by explicitly rebuilding from source using those flags? If npm / node-gyp are about to remove them, there is nothing...
I just played around with it a bit, also in a C++ application using the same functions. It looks like that a prepared statement really requires the parameters to be...
I don't think this is purely and issue of the frontend plugin, but the way of how Maven works. A Maven build always consists of several phases (clean, compile, test-compile,...
On Linux node-gyp should download and extract files to /tmp. So unpacked it should look like ``` /tmp/prebuild/node/20.16.0/ ├── include └── installVersion ``` But regarding this, node-gyp would be a...
Sometimes it would definitely help to have access to the latest error. If you just want to try things out, you do not have to use lzz. You can directly...
Well, the [pragma is deprecated](https://www.sqlite.org/pragma.html#pragma_temp_store_directory) About which temporary files are we talking here? Afaik SQLite does not support using a temp directory for all of them, but only the one...