|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
新人报道```请教大家一个问题呵呵
create or replace procedure "logfile"(p_pach in varchar2,p_filename in varchar2)
is
v_filehand utl_file.file_type;
v_text varchar2(90);
begin
if ( p_pach is null or p_filename is null)
then
goto to_end;
end if;
v_filehand:=utl_file.file_open(p_path,p_filename,'r');
loop
begin
utl_file.get_line(v_filehand,v_text);
exception;
when no_data_found then
exit;
end;
delete from message;
commit;
insert into message values(v_text);
commit;
end loop;
<<to_end>>
null;
end;
报错为
Warning: Procedure created with compilation errors
小弟愚笨不知道是什么原因啊!!希望指点 |
|