in reply to Oracle extproc_perl

Doing a pl/sql app with regular DBI works fine for me. ex.
use DBI; my $dbh = DBI->connect('DBI:Oracle:db','uid','pwd'); $dbh->do("DECLARE\nBEGIN\nDELETE FROM TBL;\nEND;"); $dbh->disconnect;

Replies are listed 'Best First'.
Re: Re: Oracle extproc_perl
by UnderMine (Friar) on Nov 25, 2002 at 17:02 UTC
    Sorry I don't think I made myself clear enough

    Using DBD::Oracle is fine when you are running a perl script that needs to talk to a Oracle and that is what we currently do.

    extproc_perl allows ORACLE to call perl not the other way round. ;)

    Hope that is clearer
    UnderMine