Jack,

>      Help!  I cannot get DBD::ODBC to work.  I am connecting to the
> MSSQL 2000 database with:
> 
> $db = DBI->connect("dbi:odbc:MSSQLTEST");
> 

In the first place, try connecting with the correct capitalization of 
the driver and add error checking: 

$db = DBI->connect("DBI:ODBC:MSSQLTEST") or die DBI::errstr();

HTH
Bodo
[EMAIL PROTECTED]

Reply via email to