我在 Windows ODBC 中配置了一个用户 DSN:
Name Driver
testdb FairCom c-tree ODBC Driver
$user = "";
$pass = "";
$dsn = "testdb";
$cx = odbc_connect($dsn,$user,$pass);
if($cx === false) {
echo "<br/>failure<br/><br/>";
echo odbc_errormsg();
}
我总是收到这个错误:
failure
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
想知道用 PHP 连接到该数据库的正确方法是什么。谢谢!