I have an Oracle stored procedure being called by through <cfstoredproc>. I can run the stored procedure from "other" client side apps. When I run the procedure in CF, and pass CF_SQL_VARCHAR parameters with a size GT 23, the CF 5.0 Server "hangs". If I pass params LTE 23...
Correction to the procedure (I mistyped the END:
PROCEDURE app_desc_check (p_description IN varchar2, p_list OUT app_table_rows)
IS
BEGIN
OPEN p_list FOR
SELECT DESCRIPTION
FROM APP_CODES
WHERE DESCRIPTION = p_description;
END app_desc_check;
Any help would be great.
I am using <CFSTOREDPROC>.
Here's my CF code:
<CFSTOREDPROC PROCEDURE="APP_PKG.APP_DESC_CHECK" DATASOURCE="#SESSION.DB#" USERNAME="#SESSION.USERID#" password="#SESSION.PASSWD#">
<cfprocparam type="IN" cfsqltype="CF_SQL_VARCHAR"...
I am using CFServer4.5, CFStudio4.5.2 & Oracle8i.
My problem is that I have a stored procedure that runs perfectly when the one and only param is 23 chars or less. As soon as I try pass a larger param, from a calling cfm, CF Server has trouble bringing up the action cfm the storeproc resides...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.