Nike_K |
А
utl_file.is_open(hFile) что говорит? |
сорри - с утра невнимательно вопрос прочитал :-)
вот такой код:
if utl_file.is_open(hFile) then
dbms_output.put_line('before close file is open');
else
dbms_output.put_line('before close file is close');
end if;
begin
Utl_File.fclose(hFile);
exception
when others then
dbms_output.put_line('Error' );
end;
if utl_file.is_open(hFile) then
dbms_output.put_line('after close file is open');
else
dbms_output.put_line('after close file is close');
end if;
выдает такой выыод:
before close file is open
after close file is close
то есть, с точки зрения оракла он УЖЕ закрыт....