Ask a Question related to ASP Database, Design and Development.
-
eddie wang #1
asp to call Oracle stored procedure
Here is the ASP code that has problem: ADODB.Parameters error Parameter
object is improperly defined... Inconsistent or imcomplete information
was provided.
I have copied my Oracle stored procedure as well. Please help.
Set paramId = cmdStoredProc.CreateParameter("graph_list", adVarChar,
adParamOutput)
cmdStoredProc.Parameters.Append paramId
create or replace PROCEDURE get_graph_list(seq_id_in in number,
graph_list out varchar ) IS
cursor list is
select field_nm name from los_aggregate_procedure_list_f where
seq_id=seq_id_in
union
select rc_nm name from los_aggregate_procedure_list_r where
seq_id=seq_id_in
union
select area_nm name from los_aggregate_procedure_list_a where
seq_id=seq_id_in;
BEGIN
graph_list:=null;
for list_rec in list
loop
graph_list :=graph_list||list_rec.name||'; ';
null;
end loop;
END;
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
eddie wang Guest
-
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,... -
Oracle Stored procedure error from CF
I have a stored proc working on a oracle server, connected through JDBC to the CF server. I ran the stored proc on the oracle server through PL/SQL... -
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... -
Re-create stored procedure in Oracle 8.0.5
"Richard Foote" <richard.foote@bigpond.com> wrote in message news:<yVuT9.20373$jM5.56361@newsfeeds.bigpond.com>... Hm, it sound like a good...



Reply With Quote

