Home > Database > Mysql Tutorial > php mssql 不能用 DB-Library(如 ISQL)或 ODBC 3.7 或更早版

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

WBOY
Release: 2016-06-07 17:47:41
Original
1568 people have browsed it

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了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template