Home
the more i try to make bun work the more it feels like a fucking meme `bun:sqlite` are such great and blazing-fastâ„¢ sqlite bindings that the database can't be even be cleaned up properly in wal mode! ```js import { Database } from 'bun:sqlite' const db = new Database('test.db') db.exec('pragma journal_mode = wal') db.exec('create table test (test text)') db.close() ``` yep this wont work and will keep the `-wal` and `-shm` files even after the script ended. and an issue on (a likely related) bug is open for almost a year already. nobody uses `bun:sqlite` i suppose :D