Ecto is a domain specific language for writing queries and interacting with databases in Elixir.
I'm trying to format a Postgres date representation into a ISO 8601 string. I'm assuming that there is a Postgres function …
postgresql date elixir iso8601 ectoI have an upsert requirement, so I need to call a postgres stored procedure or use a common table expression. …
elixir ectoI'm just learning Phoenix and Elixir and I'm coming from Ruby/Rails where I work in the REPL using pry …
elixir phoenix-framework ecto iexI would like to store an array of floating point values with Ecto using Postgres. I'm using Ecto with the …
postgresql phoenix-framework ectoHow to find posts in given List of ids? This isn't working: posts = Post |> where(id: [1, 2]) |> Repo.all …
elixir phoenix-framework ectoI am trying to figure out a way to check if the params hash in a Phoenix app (using Elixir) …
elixir phoenix-framework ectoHow do you create a unique index on two columns in Ecto, which would correspond to this: CREATE TABLE someTable ( …
elixir ectoUsually mix.test cleans the test database, but it is not working. It may be because I was playing around …
testing elixir phoenix-framework ectoHow to make a field unique in ecto? I thought it's the same as the active record in Ruby, but …
elixir ectoI am beginning my Elixir/Phoenix journey and having some trouble with my postgres connection. When I start up my …
elixir phoenix-framework ecto boxen