Live data from Hacker News

Ask HN: Do you use stored procedures for CRUD operations in your database?

news.ycombinator.com

11–14 of 14 posts

Re: Ask HN: Do you use stored procedures for CRUD operations in your database?

#13
This was a much more common practice when the architecture pattern was to have many applications accessing (and writing) to the same db. These days that’s pretty uncommon so the development overhead isn’t usually worth it.

That said, I have had use recently to split out which tables can be written by which applications and then abstracting the selects into views.

Post reply on HN