Solution for php to read the ntext Field returned value of mssql as null

Source: Internet
Author: User
This article mainly introduces the solution for php to read the ntext Field returned value of mssql as null. it can be solved by modifying the field type or using the adodb component, which has some reference value, for more information about how to read the ntext field of mssql in php, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

When using php to connect to the mssql database today, the content of the ntext field cannot be displayed. After query, it is found that the ntext field is not supported in php, the solution is to change the ntext field to text.

If there is no ntext field in the table, use the following code:

The code is as follows:

<? Php
// Connect to MSSQL
$ Link = mssql_connect ('kallespcsqlexpress ', 'sa', 'dsc ');

If (! $ Link |! Mssql_select_db ('php', $ link ))
{
Die ('unable to connect or select database! ');
}

// Do a simple query, select the version
// MSSQL and print it.
$ Version = mssql_query ('select @ version ');
$ Row = mssql_fetch_array ($ version );

Echo $ row [0];

// Clean up
Mssql_free_result ($ version );
?>


If the table contains the ntext field and it is difficult to modify the text field, you can:

1. modify php. ini, open php. ini, and find the following code:

; Mssql. textlimit = 4096 to mssql. textlimit = 2147483647

Locate:; mssql. textsize = 4096 to mssql. textsize = 2147483647

2. you can modify fields. because ntext and nvarchar fields in SQL server are stored in unicode encoding, an error is reported when php reads fields with ntext and nvarchar types through mssql extension.

If the title field type is nvarchar and the content field type is ntext, the following SQL statement reports an error.

The error code is as follows: select title, content from article

Correct:

Select convert (varchar (255), title) as title, convert (text, content) as content from article

3. if you are a virtual host, you can use the adodb component to read it. if your host does not support it, the author cannot read it now. the code is as follows:

The code is as follows:

<? Php
Include ("adodb/adodb. inc. php"); // contains the adodb class library file
$ Conn = NewADOConnection ('odbc _ mssql'); // connect to the SQL Server database
$ Conn-> Connect ("Driver = {SQL Server}; Server = localhost;
Database = mydb; ", 'username', 'password ');
?>

I hope this article will help you with php programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.