You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: support passing file:// URI when SQLite was compiled with SQLITE_USE_URI=1
I'm trying to use `better-sqlite3` with an SQLite that is compiled with
`SQLITE_USE_URI=1`:
```js
const db = SQLite(`file:///foo/bar?vfs=myfs&mode=ro&immutable=1`);
```
This, however, doesn't work right now, since there's an erroneous
assertion in the database creation.
With this patch, I can successfully connect to database.
References WiseLibs#483
0 commit comments