-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLite VFS flag #2012
Comments
You can set the VFS in the connection URL: https://www.sqlite.org/vfs.html#specifying_which_vfs_to_use |
Yes, but last time I tried this sqlx says it does not recognize the vfs option. |
Ah yeah, I forgot we re-synthesize the URI instead of passing it straight through. We'd accept a PR for this. |
Closed by #2013 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wonder if it is possible to expose the VFS connection option, which is the last parameter of
sqlite3_open_v2
.sqlx/sqlx-core/src/sqlite/connection/establish.rs
Lines 97 to 99 in 9a6d07f
A reasonable scope is to add support standard Unix and Windows VFSes. https://www.sqlite.org/vfs.html#multiple_vfses
The text was updated successfully, but these errors were encountered: