Heim >Datenbank >MySQL-Tutorial >php mssql 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版

php mssql 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版

WBOY
WBOYOriginal
2016-06-07 17:47:411561Durchsuche

php mssql 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版本将 ntext 数据或仅使用 Unicode 排序规则的 Unicode 数据发送到客户端

mssql 不能用 db-library(如 isql)或 odbc 3.7 或更早版
不能用 db-library(如 isql)或 odbc 3.7 或更早版本将 ntext 数据或仅使用 unicode 排序规则的 unicode 数据发送到客户端
*/
//php mssql查询语句

$mcn = mssql_connect('127.0.0.1','sa','1');
if( $mcn )
{
 mssql_select_db('jb',$mcn);
 $sql = "select top 10 * from hellohouse_housetogo";
 $query = mssql_query( $sql );
 while( $rs = mssql_fetch_array( $query ) )
 {
  print_r( $rs );
 }
}
else
{
 echo 'fail';
}

/*
经过了解引擎这种原因是mssql字段类型ntext问题,我们把它修改成varchar就ok了。

处理方法一

select convert(varchar(255),title) as title from hellohouse_housetogo

处理方法二

在mssql server  把它修改成varchar就ok了

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn