Ask a Question related to Coldfusion Database Access, Design and Development.
-
Raju_bhupesh #1
oracle stored procedure calling
I have two procedures test1 and test2. Resultset is returned by test2.
My coldfusion code calls test1.
PROCEDURE test1 (in_eid IN NUMBER, out_rs1 OUTREF_CURSOR)
IS
BEGIN
if eid =5 then
test2 (out_rs1 OUTREF_CURSOR);
end if;
END test1;
PROCEDURE test2 (out_rs1 OUTREF_CURSOR)
IS
BEGIN
OPEN out_rs1
FOR
SELECT *
FROM table1
END test2;
<CFSTOREDPROC PROCEDURE="test1" DATASOURCE="ps-db">
<cfproc param type="in" dbvarname="in_eid" value="5">
<CFPROCRESULT NAME="RS">
</CFSTOREDPROC>
Error I am getting "Unsupported data conversion". When I call single procedure
independently it's works fine.
Please suggest if coldfusion support this type of procedure calling.
Raju_bhupesh Guest
-
Calling stored procedure from MysQL 5.0
I am trying to call stored procedures using <cfquery> in Coldfusion MX 7.0, but I am getting this error: Error Executing Database Query. General... -
oracle mx stored procedure
"Error Executing Database Query. Incorrect parameter bindings for stored procedure call. Check your bindings against the stored procedure's... -
oracle, asp, stored procedure
I am trying to run a stored procedure from an asp page on an oracle 9i db. The stored procedure will take one parameter and should return two... -
ASP page calling a stored procedure
Im trying to call a stored procedure in SQL Server 2000 in ASP.. Heres my code.. ... -
Calling stored procedure on connection
Hello all, I'm having a dickens of a time calling a stored procedure on a connection. Every time I do, it generates an error "Arguments are of the... -
paross1 #2
Re: oracle stored procedure calling
Not sure if this is your problem, but are your procedures in a PL/SQL package?
If you wish to return result sets to ColdFusion using reference cursors, your
procedures must be in a package because you must declare the reference cursor
type globally in the package spec.
Phil
paross1 Guest
-
Raju_bhupesh #3
Re: oracle stored procedure calling
Wow it's works ....
Thanks a lot Phil
Raju_bhupesh Guest



Reply With Quote

