Rahul Gupta has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to connect to oracle server from windows 7 64 bit machine:
use DBI; use DBD::Oracle; my $host = "192.xxx.x.xx"; my $sid = "mydb"; my $connection = DBI->connect("dbi:Oracle:host=$host;sid=$sid;",'oracl +e','test12345') or die "Connection Error: $!\n";
getting following error:
More Details."The procedure entry point OCIPing could not be located in the dynamic link library OCI.dll" <br> Can't load 'C:/Perl/lib/auto/DBD/Oracle/Oracle.dll' for module DBD::Or +acle: load_file:The specified procedure could not be found at C:/Perl +/lib/DynaLoader.pm line 201.
i am using active state perl 5, version 12,on windows 7, 64 bit
and
oracle 11g 32 bit is on linux box.
Thanks in advance
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Connect to oracle server (broken install)
by Anonymous Monk on Aug 29, 2013 at 06:50 UTC | |
by Rahul Gupta (Sexton) on Aug 29, 2013 at 07:14 UTC | |
by Anonymous Monk on Aug 29, 2013 at 07:33 UTC | |
|
Re: Connect to oracle server
by jakeease (Friar) on Aug 29, 2013 at 07:25 UTC |