HI All,
How can I pass a query to oracle using cfstoredprod?
Try this:
<cfstoredproc datasource="#application.dsn#" procedure="#importTable#">
<cfprocparam type="in" cfsqltype="cf_sql_refcursor" value="#myQuery#">
</cfstoredproc>
Oracle code:
Procedure importTable ( v_table IN SYS_REFCURSOR) is
Getting error: [Oracle JDBC Driver]Unable to determine the type of the specified object.
Any ideas?
Thanks in advanced.