What ORMs have taught me: just learn SQL (2014)
1–10 of 354 posts
Re: What ORMs have taught me: just learn SQL (2014)
#2Re: What ORMs have taught me: just learn SQL (2014)
#32026: people respond with indignance that they should have to learn anything now that there's a shortcut
Re: What ORMs have taught me: just learn SQL (2014)
#4> ...(although things like Postgres’ hstore can help)...
Back when this blog post was written, this advice would have been reasonable. Today, I don't know anyone reaching for hstore since the more featureful json support was added.
Re: What ORMs have taught me: just learn SQL (2014)
#5Re: What ORMs have taught me: just learn SQL (2014)
#62014: people respond with indignance that they should have to learn SQL now that there's a shortcut 2026: people respond with indignance that they should have to learn anything now that there's a shortcut
But the current shortcut du jour is pretty damn good at writing SQL.
Re: What ORMs have taught me: just learn SQL (2014)
#7Re: What ORMs have taught me: just learn SQL (2014)
#8Re: What ORMs have taught me: just learn SQL (2014)
#92014: people respond with indignance that they should have to learn SQL now that there's a shortcut 2026: people respond with indignance that they should have to learn anything now that there's a shortcut
Re: What ORMs have taught me: just learn SQL (2014)
#10The big problem is that raw SQL has pretty bad type inference and linting support in most editors. A query builder can still give you a lot of type safety benefits.