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 -> Re: TEXT_IO does not work

Re: TEXT_IO does not work

From: Finn Ellebaek Nielsen <fen_at_changegroup.dk>
Date: Mon, 21 Feb 2000 20:57:20 +0100
Message-ID: <88s5g5$aai$1@news.inet.tele.dk>


TEXT_IO is for Developer client-side, use UTL_FILE in the database.

HTH. Finn

<smathur9_at_my-deja.com> wrote in message news:88s4ja$i3j$1_at_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:57:20 CST

Original text of this message

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