An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

Update docs to include `load_extensions` (#141)

authored by

Jason and committed by
GitHub
(Mar 4, 2024, 8:47 AM -0600) ef3afa9d a54bdcb6

+3
+3
lib/ecto/adapters/sqlite3.ex
··· 51 51 * `:datetime_type` - Defaults to `:iso8601`. Determines how datetime fields are stored in the database. 52 52 The allowed values are `:iso8601` and `:text_datetime`. `:iso8601` corresponds to a string of the form 53 53 `YYYY-MM-DDThh:mm:ss` and `:text_datetime` corresponds to a string of the form `YYYY-MM-DD hh:mm:ss` 54 + * `:load_extensions` - list of paths identifying extensions to load. Defaults to []. The provided list will 55 + be merged with the global extensions list, set on :exqlite, :load_extensions. Be aware that the path should 56 + handle pointing to a library compiled for the current architecture. See `Exqlite.Connection.connect/1` for more. 54 57 55 58 For more information about the options above, see [sqlite documentation][1] 56 59