Advantages for in Code:
*
- Easier to maintain - don't need to run a SQL script to update queries*
- Easier to port to another DB - no procs to port
Actually, I think you have that backwards. IMHO, SQL in code is pain to maintain because:
- you end up repeating yourself in related code blocks
- SQL isn't supported as a language in many IDE's so you have just a series of un-error checked strings performing tasks for you
- changes in a data type, table name or constraint are far more prevalent than swapping out an entire databases for a new one
- your level of difficulty increases as your query grows in complexity
- and testing an inline query requires building the project
Think of Stored Procs as methods you call from the database object - they are much easier to reuse, there is only one place to edit and in the event that you do change DB providers, the changes happen in your Stored Procs and not in your code.
That said, the performance gains of stored procs is minimal as Stu said before me and you can't put a break point in a stored procedure (yet).
