in reply to Re: How can I invoke SQLPLUS within a perl script?
in thread How can I invoke SQLPLUS within a perl script?

Thanks. How about using "here document" ? Something like: sqlplus username/pwd <<EOF some sql code... EOF I could not make it work.
  • Comment on Re: Re: How can I invoke SQLPLUS within a perl script?

Replies are listed 'Best First'.
Re: Re: Re: How can I invoke SQLPLUS within a perl script?
by jorg (Friar) on Apr 01, 2001 at 00:24 UTC
    sure you would then do:
    my $command= <<COMMAND; sqlplus / username/password @runthisfile.sql COMMAND
    then plug $command into the above described functions

    Jorg

    "Do or do not, there is no try" -- Yoda