Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> TEXT_IO does not work
Hi,
I am trying to use the built in package TEXT_IO using Procedure Builder 6.0 which uses PL/SQL version 2.3.4.5. The oracle version is 7.3.4
Here is what I wrote for test:
PROCEDURE FILE_IO
IS
out_file TEXT_IO.FILE_TYPE;
BEGIN
out_file := text_io.Fopen ('testfile.txt','W');
text_io.Put('This is a test...');
text_io.fclose(out_file);
END;
When compiled it says identifier TEXT_IO.FILE_TYPE, TEXT_IO.PUT,
TEXT_IO.FCLOSE must be declared.
Please tell me why it is not recognizing the package. Thanks in advance for your help.
Sheetal
Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Mon Feb 21 2000 - 13:44:43 CST
![]() |
![]() |