in reply to Sybase connectivity issue

That error means Login failed, so your credentials in $APP_SYB_USER and/or $APP_SYB_PASS do not match what the server expects.

How do you set these credentials? Does it work when you hardcode them?

$APP_SYB_USER = 'scott'; $APP_SYB_PASS = 'tiger'; my $dbh = DBI->connect(...);

Replies are listed 'Best First'.
Re^2: Sybase connectivity issue
by chilledham (Friar) on Aug 07, 2017 at 19:27 UTC

    ++ for using default Oracle credentials in response to a Sybase question :)