sqlite_ecto2
sqlite_ecto2 copied to clipboard
Sqlite3 adapter for Ecto 2.2.x
Watch status of https://github.com/elixir-ecto/db_connection/pull/90/files. May need to find a way to determine if we're inside a transaction.
https://www.sqlite.org/json1.html This would be awsome ! it is complicated ? Thanks a lot for your work, I'm using it for a small project. Regards, X
SQLite does support selects with multiple joins, but with ecto I get an exception: An exception is thrown at this place: https://github.com/elixir-sqlite/sqlite_ecto2/blob/7ba0b627108b0e1eb73d46741210bd7a11d4fd8b/lib/sqlite_ecto/connection.ex#L242 Is this just a not-implemented case? What is...
Howdy 👋 I'm trying to contribute to the ecto 3 upgrade that @DiodonHystrix has started [here](https://github.com/elixir-sqlite/sqlite_ecto2/issues/224#issuecomment-485569309). Are there any instructions on how to get the environment setup for development? I've...
I'm trying to create insert a series of entries at once using `Multi.insert_all` (Multiple `:experiment_status` need to be created after their associated `:experiment` is created). ```elixir multi = Multi.new() |>...
It seems that `Repo.stream` will not actually stream the query results. Instead the full resultset is returned and only then transformed into a stream. For example the following code will...
As pointed out on README `unique_constraint` doesn't work as expected (modifying changeset errors) and instead raising an exception. There are any plans to implement or improve this or it's totally...