feat: enhance SQLite connection configurations to allow WAL

Updated the Bun and Node SQLite connection implementations to support additional configuration options, including `onCreateConnection`. Introduced tests for connection creation to validate database instance types and ensure proper callback execution. Improved type exports for better integration with existing code.
This commit is contained in:
dswbx
2025-09-20 10:16:33 +02:00
parent 17d4adbbfa
commit 36e61cab3f
7 changed files with 147 additions and 54 deletions

View File

@@ -116,6 +116,7 @@ export {
genericSqlite,
genericSqliteUtils,
type GenericSqliteConnection,
type GenericSqliteConnectionConfig,
} from "data/connection/sqlite/GenericSqliteConnection";
export {
EntityTypescript,