|
|
|
|
|
by jwr
220 days ago
|
|
While I agree with most of this rant, I have a problem with the common "just use postgres" trope, often repeated here. I recently had to work with SQL again after many years, and was appalled at the incidental complexity and ridiculous limitations. Who in this century would still voluntarily do in-band database commands mixed with user-supplied data? Also, the restrictions on column naming mean that you pretty much have to use some kind of ORM mapping, you can't just store your data. That means an entire layer of code that your application doesn't really need, just to adapt to a non-standard from the 70s. "just use postgres" is not good advice. |
|