Michael,
The Perl DBI & DBD::Sybase have just been installed on our system...
Solaris 8
Sybase 12.0
DBI-1.30
DBD-Sybase-0.95
I am testing the installation using the following script...
#!/opt/perl/bin/perl
use DBI;
$ENV{DSQUERY} = "dbname";
$dbh = DBI->connect('dbi:Sybase:',"user","password") or die "No connection\n";
I receive the following error:
user@host:/home/user/test/dbi[315] ./dbi_test.pl
install_driver(Sybase) failed: Can't load
'/opt/perl/lib/site_perl/5.8.0/sun4-solaris/auto/DBD/Sybase/Sybase.so' for module
DBD::Sybase: ld.so.1: /opt/perl/bin/perl: fatal: relocation error: file
/appl/sybase/OCS-12_0/lib/libtcl.so: symbol comn_free: referenced symbol not found at
/opt/perl/lib/5.8.0/sun4-solaris/DynaLoader.pm line 229.
at (eval 1) line 3
Compilation failed in require at (eval 1) line 3.
Perhaps a required shared library or dll isn't installed where expected
at ./dbi_test.pl line 6
Any help you can provide will be greatly appreciated. Thanks.