Ask HN: Backend developers of HN, where and how often do you still use SQL?
11–20 of 20 posts
Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#12Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#13I’ve used several ORMs for different languages. Dapper and stored procedures have become my favorite approach. Like anything, there are trade offs. You end up with logic hidden in the DB or sometimes need to update your procs after you alter a table. If you have a good pattern established for your tables, you can easily autogenerate CRUD procs for each table!
Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#14Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#15Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#16I work at a startup, we are 6 engineers, 2 of us are back-end engineers. I use PostgreSQL everyday. We tried using an ORM, and creating our own ORM, but it wasn't worth it for us. When you are dealing with medium-large databases, you're going to want to use indexes, to do custom queries with joins etc and it's just not worth it trying to use ORMs.
Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#17Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#18it's an exceptionally good language for querying data. One of my favorite languages ever. focused, easy to understand (except the really complex stuff but that applies to all languages).
Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#19Re: Ask HN: Backend developers of HN, where and how often do you still use SQL?
#20I work at a startup, we are 6 engineers, 2 of us are back-end engineers. I use PostgreSQL everyday. We tried using an ORM, and creating our own ORM, but it wasn't worth it for us. When you are dealing with medium-large databases, you're going to want to use indexes, to do custom queries with joins etc and it's just not worth it trying to use ORMs.