PHP read MSSQL ntext field back value is empty

Source: Internet
Author: User
Tags mssql

The result is that there is no ntext field in the table, you can use the following code:

The code is as follows Copy Code


<?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 of
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 has a ntext army field, and it is not good to modify back to the Text field, you can do the following:

1. Modify PHP.ini

Open php.ini

Found it:

The code is as follows Copy Code

; mssql.textlimit = 4096
To


Mssql.textlimit = 2147483647
Found it:


; mssql.textsize = 4096
To


Mssql.textsize = 2147483647

2. You can use the Modify field, because the ntext and nvarchar fields in SQL Server store content in Unicode encoding.
As a result, PHP can get a mistake when reading a field with ntext and nvarchar types through the MSSQL extension.

If the Title field type is nvarchar,content field type is ntext, the following SQL statement complains:

Wrong:

The code is as follows Copy Code

Select Title,content from article
The 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. If you do not support the host, the author is also no way.

  code is as follows copy code
<?php
Include ("adodb/adodb.inc.php"); Contains the ADODB class library file
$conn =newadoconnection (' odbc_mssql ');//Connect SQL Server database
$conn->connect ("Driver={sql Server }; Server=localhost;
 Database=mydb;, ' username ', ' password ');

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.