我定义的包是这样的CREATE OR REPLACE  PACKAGE PAG_GET_TERMINALID  as    type c_Type is ref cursor;    procedure Proc_Get_TerminalId ( rc_Type out c_Type);end pag_Get_TerminalId;CREATE OR REPLACE  PACKAGE BODY pag_Get_TerminalId   as
    procedure Proc_Get_TerminalId ( rc_Type out c_Type)
    as
    begin
        Open rc_Type for
            Select TerminalId from Terminal;
    end Proc_Get_TerminalId;end pag_Get_TerminalId;谢谢指点!!