o2bwise has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use DBI; use strict; my ( $drh, $dbh, $sth ); $drh = DBI->install_driver( 'oracle' ); $dbh = DBI->connect('DBI:oracle:DBNAME', 'userName', 'userPswd'); die "Cannot connect: $D: $DBI::errstr\n" unless $dbh; $sth = $dbh->prepare("describe table_name;"); $sth->execute; $dbh->disconnect; exit;
Sure would appreciate some help, even if just some pointers on HOW to troubleshoot this.ld.so.1: perl: fatal: relocation error: file /blah/blah/blah/lib/auto/ +DBI/DBI.so: symbol Perl_get_sv: referenced symbol not found Killed
|
|---|