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

Different error

SQL Server does not exist or access denied.

I suggest using Control Panel / Administrative Tools / ODBC Data Source Administrator to test your connection parameters

poj

Replies are listed 'Best First'.
Re^6: connecting Perl with MS SQL Server on NT using ODBC
by Secalles (Initiate) on Dec 29, 2011 at 17:47 UTC

    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?

      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!