|

- UID
- 13075
- 帖子
- 75
- 精华
- 0
- 积分
- 38
- 人气值
- 0 点
- 努力值
- 458 点
- 推广注册人数
- 0 个人
- 阅读权限
- 50
- 在线时间
- 48 小时
- 注册时间
- 2006-11-29
- 最后登录
- 2008-5-27
|
楼主
发表于 2006-11-30 00:59
| 只看该作者
请教大家一个问题
新人报道```请教大家一个问题呵呵
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
小弟愚笨不知道是什么原因啊!!希望指点 |
|
自强不息,努力生活,----没钱就找erp100的3号人物借 |
|