The query function in Ecto Repo (Elixir)
There is a hidden function in Ecto which is the function query
in the Repo
module.
This is a wrapper around the Ecto.Adapters.SQL.query
and it is injected in the Repo
module of your application. It can be called in this way:
MyApp.Repo.query("SELECT * FROM mytable")
This function can also take an array of query parameters like:
MyApp.Repo.query("""
SELECT * FROM mytable
WHERE id = $1
""", [42])
This is quite handy when you need to debug in production, and there is no database client available.