Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> TEXT_IO does not work

TEXT_IO does not work

From: <smathur9_at_my-deja.com>
Date: Mon, 21 Feb 2000 19:44:43 GMT
Message-ID: <88s4ja$i3j$1@nnrp1.deja.com>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US