Alexander Prinzhorn
Alexander Prinzhorn
I _think_ the `AccessorSignature` error is an unrelated additional issue with Electron 20 https://github.com/electron/electron/issues/35193 Can anyone point to sources regarding `CreationContext` and the migration path? Edit: I also don't know...
Related to https://github.com/JoshuaWise/better-sqlite3/issues/576 Could you add some more tests? What if there are gaps, e.g. `SELECT ?3, ?15`? How do you bind that? With an array or object? Or do...
What's your use case? I don't understand what you're trying to achieve. You can do this to achieve basically the same: ```js // "remove "the add2 function db.function('add2', () =>...
Sounds like a valid feature request, the SQLite docs say: > To delete an existing SQL function or aggregate, pass NULL pointers for all three function callbacks. but currently better-sqlite3...
I think #475 is related. I personally think the first parameter to the `Database` constructor should behave identical to what SQLite does, including `:memory:` (which is now supported), empty strings...
TIL you can change this _at runtime_ > The compile-time setting for URI filenames can be changed at start-time using the sqlite3_config(SQLITE_CONFIG_URI,1) or sqlite3_config(SQLITE_CONFIG_URI,0) configuration calls. Regardless of the compile-time...
You can compile a custom version and set `SQLITE_TRACE_SIZE_LIMIT` and `SQLITE_LIMIT_LENGTH` to whatever size you need. See: https://www.sqlite.org/c3ref/expanded_sql.html https://github.com/WiseLibs/better-sqlite3/blob/master/docs/compilation.md https://github.com/WiseLibs/better-sqlite3/blob/6da9e569dbd3ad6d3e04b4cbd61c788c039d2ef3/src/objects/database.lzz#L67 > The sqlite3_expanded_sql() interface returns NULL if insufficient memory is...
> but in my case I really need my animations to be exactly the same frame by frame every time I run because I ultimately render to gifs or videos...
@spredemann nice, thanks for pointing to ccapture.js
You don't need to add a CSRF token to a `fetch` request, when SOP/CORS already solve that (`Origin` header). An attacker cannot forge a request via `fetch` without CORS being...