PHP using SQL database to get field questions introduction to _php Tips

Source: Internet
Author: User

In the PB development process, because the database uses the ntext field, the following prompts the error, depressed for a long time can not find the solution, after consulting a large number of data, finally understand:
PB Error:
You cannot use Db-library (such as ISQL) or ODBC 3.7 or earlier to send the ntext data or Unicode data that uses only Unicode collations to the client.
————————————————
Because the ntext and nvarchar fields in SQL Server store content in Unicode encoding, PHP will get the wrong time to read with ntext and nvarchar type fields through MSSQL extensions.

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

The correct wording is:
Select CONVERT (varchar (255), title) as title, convert (text,content) as content from article
Or do not use the ntext field
This is very useful to solve my problems!

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.