【发布时间】:2017-01-18 03:03:31
【问题描述】:
尝试连接到我的 mssql 数据库时,我收到错误消息 “SQLSTATE[01002] Adaptive Server 连接失败(严重性 9)”
下面是我正在运行的php代码
<?php
try {
$hostname = "hostname.database.windows.net";
$port = 1433;
$dbname = "database-dev";
$username = "dbuser";
$pw = "dbpassword";
$dbh = new PDO ("dblib:host=$hostname:$port;dbname=$dbname","$username","$pw");
} catch (PDOException $e) {
echo "Failed to get DB handle: " . $e->getMessage() . "\n";
exit;
}
$stmt = $dbh->prepare("select name from master..sysdatabases where name = db_name()");
$stmt->execute();
while ($row = $stmt->fetch()) {
print_r($row);
}
unset($dbh); unset($stmt);
?>
下面是我的 odbc.ini、odbcinst.ini 和 freetds.conf,你可以在这里看到我的 phpinfo() ("http://wingedw.com/matiks/connect.php") 驱动程序设置为 freetds 并且 pdo 和 pdo_dlib 模块已添加到php 5,关于我为什么出错的任何线索,我确定凭据是正确的。
odbc.ini
[MSSQLServer]
Driver = FreeTDS
Description = Any description
Trace = No
Server = servername
Port = 1433
Database = dbname
wTDS_Verison = 7.1
odbcinst.ini
[FreeTDS]
Driver = /usr/lib/i386-linux-gnu/odbc/libtdsodbc.so
Setup = /usr/lib/i386-linux-gnu/odbc/libtdsS.so
UsageCount = 1
freetds.conf
[global]
# TDS protocol version
; tds version = 7.1
# Whether to write a TDSDUMP file for diagnostic purposes
# (setting this to /tmp is insecure on a multi-user system)
; dump file = /tmp/freetds.log
; debug flags = 0xffff
# Command and connection timeouts
; timeout = 100
; connect timeout = 100
# If you get out-of-memory errors, it may mean that your client
# is trying to allocate a huge buffer for a TEXT field.
# Try setting 'text size' to a more reasonable limit
text size = 64512
# A typical Sybase server
[egServer50]
host = symachine.domain.com
port = 5000
tds version = 7.1
# A typical Microsoft server
[MSSQLServer]
host = servername
port = 1433
tds version = 7.1
【问题讨论】:
-
在您的
odbc.ini中,您似乎有wTDS_Verison = 7.1而不是TDS_Verison = 7.1。
标签: php sql-server odbc freetds