in reply to Win32::ODBC / IIS -- M$ SQL Server 7 on separate machine
I would recommend that you switch to DBI. Installing DBI and DBD::ODBC is a snap from ppm. Using DBI instead of Win32::ODBC has the advantage of being more portable.$dbh = DBI->connect('DBI:ODBC:odbcSourceName', 'username', 'password') + || die $dbh->errstr;
|
---|