Alexander Prinzhorn
Alexander Prinzhorn
AFAIK actions are not reactive at all right now, so even if nullish was supported, you couldn't swap it with an actual implementation later: https://github.com/sveltejs/svelte/issues/6754 https://github.com/sveltejs/svelte/issues/6942
> This is helpful if you're passing nullable actions as props. I didn't say it wasn't helpful. But actions cannot be swapped out right now (see linked issues). So if...
You might be confusing _synchronously_ with _immediately_ or _instantly_. I think what you're seeing is Svelte waiting for the current `subscribe` to finish before triggering the next subscribers. Edit: _synchronous_...
I assume you're using v11.6.0?
Likely another duplicate of https://github.com/sveltejs/svelte/issues/6562 @dummdidumm
Cannot reproduce with the latest better-sqlite3: ```js import Database from 'better-sqlite3' const db = new Database('./Chinook_Sqlite.sqlite'); const buffer = db.serialize(); const inMemoryDb = new Database(buffer); const stmt = inMemoryDb.prepare('SELECT Name...
@agamm thanks a lot! Maybe you can open your PR to the new repo (seems like the issue was transferred but not your PR). Would be highly appreciated to have...
Related https://github.com/sveltejs/svelte/issues/6754
> That said, it does appear that this works in Svelte 5, so I think we're unlikely to do anything about this in 4. It behaves different than Svelte 4...
Do you have a question or just wanted to share this? As you said, you tried to access the database using a different process that didn't have the necessary extension...