Stored Procedures
How much of a performance difference is it when I use Stored Procedures vs. sending the sql directly from my application?
ex sql:
select emailaddr from users where (id = " & theid & ")
I know SQL Server runs a SP and know its path but is there really that much of a difference with something this simple?
|