@@ -55,7 +55,7 @@ All aspects are configurable with sensible defaults:
5555interface SQLiteWASMConfig {
5656 filename: string ;
5757 vfs? : {
58- type? : ' opfs-sahpool' | ' opfs' | ' memdb ' ;
58+ type? : ' opfs-sahpool' | ' opfs' | ' memory ' ;
5959 poolConfig? : {
6060 initialCapacity? : number ; // Default: 3
6161 clearOnInit? : boolean ; // Default: false
@@ -184,13 +184,13 @@ await db.transaction(async (tx) => {
184184| ** Configuration** | Hardcoded values | Fully configurable |
185185| ** Table API** | Full ORM-like (insert, update, delete, etc.) | Type hints only (query, exec, run) |
186186| ** PRAGMA** | Hardcoded (MEMORY, NORMAL) | User configurable |
187- | ** VFS** | Hardcoded opfs-sahpool | User can choose (opfs-sahpool, opfs, memdb ) |
187+ | ** VFS** | Hardcoded opfs-sahpool | User can choose (opfs-sahpool, opfs, memory ) |
188188| ** Pool Config** | Fixed (initialCapacity: 3) | Configurable |
189189| ** Console Filtering** | Always on | Optional (configurable) |
190190
191191## What's Configurable (vs Hardcoded Before)
192192
193- ✅ ** VFS Method** - User chooses: opfs-sahpool, opfs, or memdb
193+ ✅ ** VFS Method** - User chooses: opfs-sahpool, opfs, or memory
194194✅ ** Pool Settings** - initialCapacity, clearOnInit, name
195195✅ ** PRAGMA Settings** - journal_mode, synchronous, temp_store, cache_size, etc.
196196✅ ** Logging** - filterSqlTrace, custom print/printErr functions
0 commit comments