-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Loading a sqlite3 extension? #1867
Comments
What's wrong with |
This is unfortunately not enough, because at least for the windows builds it is necessary to call the enable_load_extension c function which has no sql function counterpart, without it you end up with an unauthorized error (tried a few hours ago with the bundled 3.24 version in sqlite3-sys). |
This behavior is untested since we would need to add some extensions in order to test it. Fixes #1867
This would be great feature, currently I have to use a separate sqlite lib to load and query with extensions. |
This behavior is untested since we would need to add some extensions in order to test it. Fixes diesel-rs#1867
This behavior is untested since we would need to add some extensions in order to test it. Fixes diesel-rs#1867
This behavior is untested since we would need to add some extensions in order to test it. Fixes diesel-rs#1867
This behavior is untested since we would need to add some extensions in order to test it. Fixes diesel-rs#1867
Hello.
Did i miss something or is it really not possible (diesel 1.3) to load a sqlite3 extension? I discovered this when trying to make a spatialite initialization sequence work, but without the extension it obviously can not work. Doing a pull request exposing the APIs on SqliteConnection would probably not be as hard, but how would you go about allowing extension loading in migrations (e. g. how of a bad idea would it be to allow extension loading by default)?
The text was updated successfully, but these errors were encountered: