我使用这个脚本来测试我从 linux 服务器到 mssql 引擎的连接,我的问题是当我应用
[root@localhost html]# php sql.php 你连接到 mssql 上的新数据库。
现在,当我从 Web 访问 sql.php 时,它给我错误“警告:mssql_connect():无法连接到服务器:”
任何线索真正发生了什么以及为什么我无法通过网络连接,同一本地网络防火墙中的两台服务器都已关闭
?php
$myServer = "mssql"; // host/instance_name
$myUser = "sa"; // username
$myPass = "mypasswd"; // paasword
$myDB = "new"; // database name
// connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldnt connect to SQL Server on $myServer");
// select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn.t open database $myDB");
echo "You are connected to the " . $myDB . " database on the " . $myServer . ".";
// close the connection
mssql_close($dbhandle);
?>