Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure to register the regexp function when creating a new database
DB4S comes with its own default implementation for the REGEXP function. This function, however, needs to be registered in order for SQLite to use it. We did that when opening a database file but not when creating a new database file, so regular expressions wouldn't work for newly created databases like they did for existing ones. This is fixed by this commit.
- Loading branch information