Hi all,
Please i dont know how read output parameters from stored procedure (oracle 10g)
this is my trivial proc:
create or replace PROCEDURE TEST_p
( test_out OUT NUMBER
) AS
BEGIN
select count(id) into test_out from cislovaci_plan;
END TEST_p;
and I tried this:
q := TZQuery.Create(self);
q.Connection := dmdb.conMain;
q.Params.CreateParam(ftInteger,'param1',ptOutput);
q.sql.Text := 'CALL test_p(:param1)';
q.ParamCheck := true;
q.ExecSQL;
This solution throw this exception:
ORA-01008: not all variables bound
Pleas help
Readiing stored procedures output paramters in ORACLE 10g
Moderators: gto, EgonHugeist