Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support passing file:// URI when SQLite was compiled with `SQLIT…
…E_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
- Loading branch information