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: Perl - Newbie question

Re: Perl - Newbie question

From: Jerome Vitalis <vitalismanREMOVETHAT_at_gmail.com>
Date: Thu, 08 Jun 2006 11:18:30 +0200
Message-Id: <pan.2006.06.08.09.18.29.167000@gmail.com>


On Wed, 07 Jun 2006 17:40:43 +0000, Mladen Gogala wrote:

> Of course, you can try with
>
> open FH,"|sqlplus login/password";
> print "select * from all_objects;\n";

It should read:
print FH "select * from all_objects;\n";

And if the OP wants to process the output (just a guess), he'd better use IPC:Open2 instead of open().

Jerome Received on Thu Jun 08 2006 - 04:18:30 CDT

Original text of this message

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