i.e, can we just use stored procedures for everything? In a web-site backed by a DB that is.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Stored Procedures have their benefits:
Stored Procedure Cons:
ConclusionYes, stored procedures & functions can do most of what you'd probably ever want to do with data. The decision to use them is determined by design choices - to be database agnostic, most would not use stored procedures. Choose what best suits the requirements, not your preference. |
|||||||||
|
|
In short: no. And, that's probably a bad idea. See: Arguments for/against Business Logic in stored procedures |
|||||||||
|