Thanks to everyone for their replies.

If someone is searching for this in the future the solution seems to be as 
follows:

If you have a stored proc that DOES NOT require params in or out of the stored 
proc, the string to call looks like this

Mixed Case:
<cfset storedProcVar = "SCHEMANAME." & """PackageName""" & "." & 
"""StoredProcName""()" />

Non Mixed Case:
<cfset storedProcVar = "SCHEMANAME.PACKAGE_NAME.STORED_PROC_NAME()" />


If you have a stored proc that DOES require params in or out of the stored 
proc, the string to call looks like this

<cfset storedProcVar = "SCHEMANAME." & """PackageName""" & "." & 
"""StoredProcName""" />

Non Mixed Case:
<cfset storedProcVar = "SCHEMANAME.PACKAGE_NAME.STORED_PROC_NAME" />

And then used in:
<cfstoredproc procedure="#storedProcVar#" 
datasource="#request.LOCAL_DATASOURCE#">
   ....


Not sure if needing/not needing the "()" is just common sense or not, but I got 
stuck on it for a bit.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338831
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to