Calling Stored Procedures
I'm curious as to whether either of these methods has any advantages over the other. They both work.
Method 1
<cfstoredproc datasource="infograms" procedure="DanTest">
<cfprocparam cfsqltype="cf_sql_timestamp" value="#startdate#">
<cfprocresult name="y">
</cfstoredproc>
Method 2
<cfquery name="z" datasource="infograms">
execute DanTest @7246612 = <cfqueryparam cfsqltype="cf_sql_timestamp" value="#StartDate#">
</cfquery>
