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/Sybase/Sybase.dll' for module DBD::Sybase: load_file:The specified module 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 expected 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 load 'E:/Perl/site/lib/auto/DBD/Sybase/Sybase.dll' for module DBD::Sybase: 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 #### my @drivers = DBI->available_drivers(); foreach my $driver (@drivers) { print "Driver: $driver
"; if ($driver ne "Proxy" && $driver ne "Multiplex" && $driver ne "ExampleP") ##DBD:Proxy and DBD::Multiplex have problem with datasources { my @datasources = DBI->data_sources($driver); foreach my $datasource (@datasources) { print "\tData Source is $datasource
"; } } print "\n"; }