sqlite_ecto
sqlite_ecto copied to clipboard
SQLite3 adapter for Ecto
See the note at the bottom of the [tests](https://github.com/jazzyb/sqlite_ecto/blob/master/test/sqlite_ecto_test.exs#L530): ``` # NOTE: The assertions commented out below represent how joins *could* be # handled in SQLite to produce the same...
VACUUM
Every time when I run this command I have got the same result: it ends with timeout. Can I do anything with that? Thanks. ``` elixir iex(11)> Ecto.Adapters.SQL.query(Stats.Repo, "VACUUM", [],...
Hey, I like Ecto2 and sqlite, but they don't play well together. Are there any plans to support Ecto2?
Last commit is nearly 1 year old.
Also updates several dependencies to more current versions.
sqlite_ecto doesn't work with latest ecto version shipped with Phoenix Framework 1.3 due to dependency resolution problems.
I did the command ``` mix ecto.gen.repo Blog.Repo ``` error is ``` == Compilation error on file lib/sqlite_ecto.ex == ** (CompileError) lib/sqlite_ecto.ex:41: no super defined for load/2 in module Sqlite.Ecto....
NOTE: It behaves like the postgres adapter. https://github.com/elixir-lang/ecto/commit/23b9a3fe531effe53caabee0d89f98f542e4b037
This PR adds an example on how to include more custom queries with `sqlite_ecto`. I was having trouble figuring out how to write a more specific query for my need...