Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle/DOA/Delphi

386016Jan 21 2003 — edited Jan 22 2003
I'm executing the following procedure call:

DECLARE
i_rgsc varchar2(4) :='0106';
i_kcrule varchar2(3) :='012';
o_sale_rec pkg_rule_sale.salepool_tab_type;

BEGIN
sp_rule_sale(i_rgsc, i_kcrule, o_sale_rec); END;

The output parameter, o_sale_rec is declared as a package of type table. How can I view the results of this output parameter. I'm actually trying to show my result in a DBGRID. If anyone knows how to do this or an alternative method of doing this in Delphi with DOA please let me know
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 19 2003
Added on Jan 21 2003
2 comments
275 views