我已经成功地创建了一个到 MSSQL 数据库的连接,执行了一个查询并使用 mssql_num_rows 返回了结果。我能够$numRows
回显并在页面上显示“返回的行”。
表中的列具有以下名称:employeeName、prideSelect、prideComment、flagpoleSelect、flagpoleComment。都是 nvarchar(50) 或 nvarchar(max)
我无法做的是回显表中的任何数据。我是 php/sql 的新手,我尝试寻找没有运气的解决方案。我不确定它是否与设置为 nvarchar 的数据库列有关。或者,如果这是我的代码中的错误。我已经尝试过mssql_fetch_array
并mssql_fetch_row
显示结果,但都无法正常工作。下面是我正在使用的代码:
<?php
//connects to Heros database
$conn = mssql_connect($host, $uid, $pwd) or die('Could not connect')
or die("Couldn't connect to SQL Server on $host");
$selected = mssql_select_db($db, $conn)
or die("Couldn't open database $db");
echo "MSSQL Connection successful";
//declare the SQL statement that will query the database
$query = mssql_query('SELECT * FROM [Heros].[dbo].[tblHeros]');
//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["employeeName"] . $row["prideSelect"] . $row["prideComment"] . "</li>";
}
//close the connection
mssql_close($conn);
?>