in reply to Re^5: connecting Perl with MS SQL Server on NT using ODBC
in thread connecting Perl with MS SQL Server on NT using ODBC

I open it and i have no Data Source configured here.

I configured a SQL Server called MSSQL (in System DSN) and it worked ( the test was successful )and i'm still getting "access denied"

Should i change my code?

  • Comment on Re^6: connecting Perl with MS SQL Server on NT using ODBC

Replies are listed 'Best First'.
Re^7: connecting Perl with MS SQL Server on NT using ODBC
by poj (Abbot) on Dec 29, 2011 at 17:56 UTC

    Yes, it should use that System DSN with this

    my $DBH = DBI->connect("DBI:ODBC:MSSQL",$user,$pass) or die "Couldn't +open database: $DBI::errstr\n";
    poj
      Thanks it returned no error!