0
kicks
Why I would not use Stored Procedures, mattias-jakobsson.net
A very important task in just about any web application that you will build is data access. There is alot of opinions on how this is done the best way. You can use inline sql statements in your code, you can use stored procedures or you can generate your sql using a OR Mapper. From the developers that use sprocs you will ofter hear arguments about preformance and security, while you will here arguments about managable code from the OR/M fans. I think that, depending on your architecture, every bit of code has it´s own place and that different concerns shouldn´t be mixed up. That is why I choose to use a OR Mapper when I start a new web application.