Matthew Johnston
Matthew Johnston
> Sorry, I keep saying "postgrex", when I really mean ecto_sql/postgres Don't worry it confuses me as well.
I don't understand what placeholders are supposed to be. Other than the named `?1` within the prepared statements. That said, exposing those bindings cleanly will be pretty easy.
@LordPraslea this is now enabled by default with the [exqlite](https://github.com/elixir-sqlite/exqlite) and [ecto3 adapter](https://github.com/elixir-sqlite/ecto_sqlite3)
> Nice, I will take a look, I've already started to implement an ecto adapter and a server interface to allow ACTOR manipulation for a project where I need multiple...
@sntran unfortunately with how the connections are pooled, your in memory database will always be empty because each new connection opens its own database. This is mostly an issue with...
I haven't had time to really dive into this lately, but I don't know how the shared cache is going to work when the DB is on a different machine...
I'm still not sure if this is something that we should support. `DBConnection` is pretty entangled into `ecto` and I don't think we can guarantee connections being in the same...
This is actually something I was investigating for my own needs. Yes it is possible, but it is incredibly cumbersome with how ecto is structured. If I have time, I'll...
Yes, that does take a bit of the complexity out. I do remember using it but had a case where it wasn't possible. It has been a while since I...
Thank you @maennchen I saw the PR for the other adapters. I'll get this rectified and this should be good to go.