-
Notifications
You must be signed in to change notification settings - Fork 51
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
Load extensions with Sqlite3
??
#275
Comments
Yes using the config :exqlite, load_extensions: [ "./priv/sqlite/\#{arch_dir}/rotate" ] Here is a ton of information about the configurations that can be passed to exqlite. Sorry that the information is buried in there. https://hexdocs.pm/exqlite/Exqlite.Connection.html#connect/1 Just be aware, when you load extensions that they need to be compiled for that machine and must be compatible with the sqlite version. |
Thanks very much! Would you like a PR for a small update to README with this docco? |
@andyl definitely, an example section in the README would be fine. |
Done. |
Exqlite.Basic
has functionsenable_load_extension
andload_extension
.Exqlite.Sqlite3
only has functionenable_load_extension
.Is it possible to load extensions with
Sqlite3
??The text was updated successfully, but these errors were encountered: