ecto_sqlite3
ecto_sqlite3 copied to clipboard
An Ecto SQLite3 adapter.
### Elixir version 1.17.2 ### Database and Version sqlite 3 (as brought by adapter) ### Ecto Versions 3.12.1 ### Database Adapter and Versions (postgrex, myxql, etc) exqlite 0.23, ecto_sqlite3 0.17.0...
I've been trying to debug a memory issue and I think I've been able to pin it down to that it has something to do with `ecto_sqlite3` but not with...
Hi folks! I've seen some of the previous issues where it appears that library's only path to using an in-memory database is to use 1 connection: - https://github.com/elixir-sqlite/exqlite/issues/237 - https://github.com/elixir-sqlite/ecto_sqlite3/issues/75...
SQLite allows attached databases, and their tables can be referenced by prefixing the schema name ```sql ATTACH DATABASE "/tmp/database.db" AS another; SELECT * FROM another.things; ``` I think it makes...
Marking as a draft because I actually don't know if this is the correct solution I'm using https://github.com/sloanelybutsurely/typeid-elixir which implements an `Ecto.ParameterizedType` that can be either a `:string` or `:uuid`...
Do you guys have any advice I could offer the maintainer on what this error means? Or is there anything on your end that could be done? > [error] :gen_statem...
Doesn't work: ```elixir val = dynamic(^["abc", "def"]) cond = dynamic([a], a.col in ^val) query = from a in "table", where: ^cond, select: a.col {sql, x} = Repo.to_sql(:all, query) # sql...
## Versions: * Elixir 1.17 * ecto 3.12.5 * ecto_sql 3.12.1 * ecto_sqlite3 0.15.1 * exqlite 0.29.0 ## Relevant code ```elixir def list_top_n_customers_by_order_count(n \\ 5) when is_integer(n) do Customer |>...