cfstoredproc vs. Exec (SQL Server) or Call (MySQL)
Just out of curiosity...
Why go through the process of adding a cfstoredproc with associated cfprocparams and cfprocresults when I could simply use EXEC or CALL commands?
SQL Server
<cfquery>
exec spMyStoredProc param1,param2
</cfquery>
MySQL
<cfquery>
call spMyStoredProc param1,param2
</cfquery>
It sure would seem to be a lot simpler doing it this way.
Could it have something to do with type validation or database server permissions?
