SoFunction
Updated on 2025-03-10

Code page conversion is not supported for text data types From: 1252 to: 936

Code page conversion is not supported for text data types From: 1252 to: 936

Updated: April 23, 2011 21:21:36 Author:
The error prompt is also a problem that cannot be converted from text: this is mainly because the data type of the database is in text when designing - and we use a Chinese operating system. Check the database script and modify Text to ntext. Support unicode.
Code page conversion is not supported for text data types. From: 1252 to: 936.
————————————————————
This problem is because when designing the target, the original database uses:
English (US) 0×409 Latin1_General 1252

Because of the operating system, what we need is
Simplified Chinese (People's *) 0×804 Chinese_PRC 936
  • text
  • Code page conversion

Related Articles

  • Example of PHP full binary tree definition and implementation method

    This article mainly introduces the definition and implementation method of PHP full binary tree, briefly describes the concept of a full binary tree, and combines the example form to give relevant operation techniques such as definition of a full binary tree, node search, addition, setting, and printing. Friends who need it can refer to it.
    2017-10-10
  • Detailed explanation of the definition and function of streams in PHP

    The function of the stream is to transfer data between the origin and the destination. The origin and destination can be files, command line processes, network connections, ZIP or TAR compressed files, temporary memory, standard input or output, or any other resource implemented through the PHP stream encapsulation protocol.
    2022-11-11
  • php design mode Strategy (strategy mode)

    Define a series of algorithms, encapsulate them one by one, and make them replace each other, and the changes in the algorithm used can be independent of the customers who use it
    2011-06-06
  • PHP uses curl to implement simple mock submit form function

    This article mainly introduces the function of using curl to implement a simple simulation submission form for PHP, which has certain reference value. Interested friends can refer to it.
    2017-05-05
  • PHP Imagick perfectly realizes image cropping, generate thumbnails, and add watermarks

    This article mainly introduces PHP Imagick to perfectly realize image cropping, generate thumbnails, and add watermarks. It has certain reference value. Interested friends can refer to it.
    2016-02-02
  • PHP unlimited classification classes

    During this period, I was writing a departmental permission system and needed to use unlimited classification technology. I found a lot of codes about classification. I collected them one by one.
    2007-01-01
  • Examples of PHP image synthesis and imitation of WeChat group avatars

    This article mainly introduces the methods of synthesising PHP images and imitating WeChat group avatars, involving PHP images conversion and generation related operation techniques. Friends who need it can refer to it
    2019-10-10
  • How to make PHP code safer

    Although PHP is the best language in the world, some security issues arise due to weak-type languages. For websites developed by PHP code, while performing website security detection for customers, all large and small will have vulnerabilities that the backend management page of the website is bypassed and logged into the backend directly, and the backend of each website is bypassed differently. This article discusses this issue.
    2021-05-05
  • Methods for implementing infinite classification of php+mysql database

    This article mainly introduces the method of implementing infinite classification of php+mysql database, including complete node operation techniques and corresponding application method examples. It is a very practical technique. Friends who need it can refer to it.
    2014-12-12
  • php string length distinction under different encodings

    The string lengths of different encodings in PHP are distinguished. Below are some test codes, you can refer to them.
    2009-09-09

Latest Comments