Does anyone know if either of these methods for calling a stored proc is faster or better than the other?

<cfstoredproc datasource="blahblah" procedure="blahblah">
    <cfprocparam blahblah>
    <cfprocparam blahblah>
</cfstoredproc>

<cfquery datasource="blahblah">
    EXECUTE blahblah #blah#, #blah#
</cfquery>

Reply via email to