costas has asked for the wisdom of the Perl Monks concerning the following question:
Sybase.dll does exist however and in the specified directory.Driver: ExampleP Driver: ODBC Driver: Proxy Driver: Sybase Content-type: text/html Software error: install_driver(Sybase) failed: Can't load 'E:/Perl/site/lib/auto/DBD/S +ybase/Sybase.dll' for module DBD::Sybase: load_file:The specified mod +ule could not be found at E:/Perl/lib/DynaLoader.pm line 206. Compilation failed in require at (eval 3) line 3. Perhaps a required shared library or dll isn't installed where expecte +d For help, please send mail to this site's webmaster, giving this error + message and the time and date of the error. [Tue Apr 2 14:31:12 2002 +] E:\Inetpub\cgi-bin\test.pl: install_driver(Sybase) failed: Can't lo +ad 'E:/Perl/site/lib/auto/DBD/Sybase/Sybase.dll' for module DBD::Syba +se: load_file:The specified module could not be found at E:/Perl/lib/ +DynaLoader.pm line 206. [Tue Apr 2 14:31:12 2002] E:\Inetpub\cgi-bin\ +test.pl: Compilation failed in require at (eval 3) line 3. [Tue Apr 2 + 14:31:12 2002] E:\Inetpub\cgi-bin\test.pl: Perhaps a required shared + library or dll isn't installed where expected
I appreciate any helpmy @drivers = DBI->available_drivers(); foreach my $driver (@drivers) { print "Driver: $driver<br>"; if ($driver ne "Proxy" && $driver ne "Multiplex" && $driver ne "Ex +ampleP") ##DBD:Proxy and DBD::Multiplex have problem with datasources { my @datasources = DBI->data_sources($driver); foreach my $datasource (@datasources) { print "\tData Source is $datasource<br>"; } } print "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems with DBD::Sybase
by Biker (Priest) on Apr 02, 2002 at 14:40 UTC | |
by derby (Abbot) on Apr 02, 2002 at 15:05 UTC | |
|
Re: Problems with DBD::Sybase
by mpeppler (Vicar) on Apr 02, 2002 at 15:14 UTC | |
|
Fighting the Tide by Avoiding ODBC Use with MS SQL 2000 {Re: Problems with DBD::Sybase}
by dave_aiello (Pilgrim) on Apr 03, 2002 at 12:36 UTC | |
by dws (Chancellor) on Apr 03, 2002 at 20:01 UTC |