in reply to Re: Perl 5.20 Sybase 15.7 connect to database error
in thread Perl 5.20 Sybase 15.7 connect to database error

I was able to use the DBI:ODBC route to connect to the database. I could not use the SybaseASE or the Sybase route as it was unable to find the modules. Below is my code snippet that succeeded:
my $dbh = DBI->connect( "dbi:ODBC:$db", "$login", "$password", { RaiseError => 1, AutoCommit => 1 } ) || err("Database Error","Can't connect to database $d +b: ". "$DBI::errstr",3);

Thank you both for your assistance with this matter.