PHP 中的 MSSQL 查询问题和查询文本数据
2022-08-30 14:03:44
我正在尝试在PHP中查询以连接并从MSSQL EXPRESS(2008 R2)数据库中提取数据。但是当我从数据库中提取基于ntext的数据时,我得到了一个错误。
错误是;
无法将仅 Unicode 排序规则中的 Unicode 数据或 ntext 数据发送到使用 DB-Library(如 ISQL)或 ODBC 版本 3.7 或更早版本的客户端。(严重性 16)
我的脚本是
$myServer = ".\SQLEXPRESS";
$myUser = "sa";
$myPass = "blablabla";
$myDB = "test";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't 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");
//declare the SQL statement that will query the database
$query = "SELECT * FROM dbo.table WHERE query='2'";
//$query .= "FROM dbo.table ";
//$query .= "WHERE query='2'";
//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["query"]. "</li>";
}
//close the connection
mssql_close($dbhandle);
对此的任何帮助都是值得赞赏的....
谢谢。。。。