http://qs321.pair.com?node_id=592511


in reply to Sybase(on WinXPProfessional) connectivity with Perl(Sybase 15, Perl5.8.8)

MH

Try adding a BEGIN block and add Sybase path as shown below.
#!/usr/bin/perl use warnings; use strict; BEGIN { $ENV{SYBASE} = 'C:\\sybase'; } use DBI; ... ...
Check the "Connecting to Sybase" section in the DBD::Sybase for more details.