我是 sql server 的新手,我只是想在 windows 7 机器上使用 iis 7 将 sql server express edition 2012 与 php 连接起来。
这是我的代码:
$myServer = "ASUS\SQLEXPRESS";
$myUser = "sa";
$myPass = "1991";
$myDB = "test";
echo("aaaa");
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass);
echo("bbbb");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT *FROM mhs";
//execute the SQL query and return records
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";
//display the results
while($row = mssql_fetch_array($result))
{
echo "<li>" . $row["nim"] . $row["nama"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
我的 php 代码在本地 iis 上运行,我认为用户名、密码和服务器名是正确的,但是当我在本地 iis 上执行它时,它没有显示任何错误,只是没有显示“aaaa”和“bbbb”。
我认为我在 mssql_connect 中错了,但有什么问题?有谁能够帮我?
谢谢。