EXEC SQL EXECUTE 
  BEGIN 
       checklist1(..);
  END ; END-EXEC ;

解决方案 »

  1.   

    you can find the topic in faq.
      

  2.   

    不知说了多次,index-by表不是ORACLE内部对象,离开程序体就不可以用作对象了!CREATE OR REPLACE PACKAGE pkg_test
    AS
       type SeqTabTyp is TABLE of varchar2(15)
    index by binary_integer ;
    END pkg_test;
    /create or replace PROCEDURE checklist1(in_billseq in pkg_test.SeqTabTyp);
    ........
    end checklist1;
    /
      

  3.   

    我知道啊,我现在想知道的是如何在PRO*C中调用这个过程
    如何在PRO*C中声明变量并将值传入到这个过程中。
      

  4.   

    http://www.chinaunix.net/cgi-bin/bbs/topic.cgi?forum=8&topic=112http://www.chinaunix.net/cgi-bin/bbs/printpage.cgi?forum=8&topic=112
      

  5.   

    如何从PRO*C中将参数传入啊,请大家帮帮忙
    很急的