Create or replace procedure bi(recid integer)
   as
   -- msgprop        DBMS_AQ.MESSAGE_PROPERTIES_T;
   --enqopt         DBMS_AQ.ENQUEUE_OPTIONS_T;
   enq_msgid      RAW(16);
   pload          message_type;
  begin
-- enqopt.visibility:=dbms_aq.IMMEDIATE;
  pload := message_type(recid, 'NEWMESSAGE');
 /* dbms_aq.enqueue(
        queue_name         => 'MSG_QUEUE',
        enqueue_options    => enqopt,
        message_properties => msgprop,
        payload            => pload,
        msgid              => enq_msgid);*/
end; zhe这样能够 编译通过 ,但是 如果巴注释都去掉,就编译错误,请问什么原因,谢谢!!