Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Perl - Newbie question
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
![]() |
![]() |