dogweather

dogweather

Could someone speak to ActiveRecord vs. Ecto queries, especially relative date comparisons?

I’m deciding whether to write a little reporting library in Rails or Elixir+Ecto. Here’s an ad-hoc query in the Rails console:

SearchLog
  .where("vip_status LIKE 'vip: yes%'")
  .where('created_at > ?', 3.days.ago)
  .pluck(:vip_status)

So, two questions: :slight_smile:

  1. How would I write the LIKE and 3.days.ago with Ecto?
  2. I realize that Elixir+Ecto will be more verbose. And also probably, have a greater mental overhead due to knowing in which modules various functions are found. From your experience, is the trade-off worth it? Are there benefits of the repo pattern over active record? How does the Elixir console compare to Pry for writing ad hoc queries?

Personally, I get high productivity from the Rails console. The fluent OO API really helps.

Thanks!

Most Liked

sodapopcan

sodapopcan

Ecto has relative date functions (including ago) and a like function. With your example it’s actually not really more verbose than AR:

from s in SearchLog,
  where: like(s.vip_status, "vip: yes%"),
  where: s.inserted_at > ago(3, "day"),
  select: %{vip_status: s.vip_status}

(I wrote that on the fly so sorry if there is an error)

I obviously don’t know anything about the lib you want to write, but in my experience having done lots of reporting with Rails, you end up writing a bunch of raw SQL, so Ecto would likely be a better overall experience (I have yet to do any reporting with Ecto).

The console is a bit more of a pain out of the box, but that can be remedied with a good .iex.exs. Alias all the stuff you use regularly and require Ecto.Query (or even import it if you’re feeling saucy).

10
Post #2

Where Next?

Popular in Questions Top

fireproofsocks
I’m working on defining a simple Ecto schema for a table (in PostGres), but I don’t see where I can define a column as NOT NULL. Conside...
New
JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
tduccuong
Hi, is there any work on GUI with Elixir, that is similar to Electron/Javascript? My idea is to bundle Phoenix and BEAM into a single se...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
sabri
Can someone explain the settings of pool_size of Ecto in config file? and what is the recommend size? Thanks
New
Codball
Mix format works fine if run from the cmd. I’ve followed this to facilitate the implementation into VSC which involves downloading an ext...
New
lucidguppy
I have a super simple question about elixir - how would I take a file like this foo bar baz and output a new file that enumerates th...
New

Other popular topics Top

sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
977 41022 311
New
dotdotdotPaul
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
chrismccord
This release brings a number of exciting features, including integration with the new Phoenix LiveDashboard and Phoenix LiveView. There h...
New
mgjohns61585
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 27727 240
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New

We're in Beta

About us Mission Statement