gasho has asked for the wisdom of the Perl Monks concerning the following question:
use DBI; $ENV{ORACLE_HOME} = 'C:\oracle\product\10.2.0\client_1'; #or whatever $ENV{LD_LIBRARY_PATH} = 'C:\oracle\product\10.2.0\client_1\LIB'; #or w +hatever $ENV{LD_RUN_PATH} = 'C:\oracle\product\10.2.0\client_1\LIB'; #or whate +ver my $dbh = DBI->connect( 'dbi:Oracle:EAORA10G', 'JdoeJd', 'Dj111222', { RaiseError => 1, AutoCommit => 0 } ) || die "Database connection not made: $DBI::er +rstr"; my $sql = qq{ SELECT CMID FROM CMOBJECTS}; my $sth = $dbh->prepare( $sql ); $sth->execute(); $dbh->disconnect();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem with DBD::Oracle
by ikegami (Patriarch) on Jun 06, 2007 at 17:34 UTC | |
by gasho (Beadle) on Jun 06, 2007 at 17:41 UTC | |
|
Re: Problem with DBD::Oracle
by randyk (Parson) on Jun 06, 2007 at 21:40 UTC | |
|
Re: Problem with DBD::Oracle
by derby (Abbot) on Jun 06, 2007 at 18:21 UTC | |
by Anonymous Monk on Jun 07, 2007 at 06:09 UTC |