Subject: | Entry pt. Perl_Glockhook_ptr could not be located |
Apologies in advance if this is user error or not DBD-Oracle....
I am using ActiveState Perl v5.8.7.813 on MS WinXP 2002 SP2,
with DBI v.150, DBD-ODBC v.1.13, DBD-Oracle v.1.17 (all installed via
ppm).
The following code snip (and many variants) results in a perl.exe
error "The procedure entry point Perl_Glockhook_ptr could not be
located in the dynamic link library perl58.dll":
my $DB = 'DBI:Oracle:host=<ipaddr>;sid=<sid>';
my $UID = "<uid>";
my $PW = "<pw>";
my $IMdbh = DBI->connect($DB,$UID,$PW)
or return log_message($FILEFATAL,"DBI::errstr");
$IMdbh->disconnect();
DLL perl58.dll exists in C:\Perl\bin and has a file version of
5.8.7.813 and creation date of 6/6/2005 1:37:30PM.
Thnx.