In-depth understanding of the differences between mysqlSETNAMES and mysql (I) _ set_charset _ MySQL

Source: Internet
Author: User
To better understand the differences between mysqlSETNAMES and mysql (I) _ set_charset bitsCN.com, try to use mysqli_set_charset (mysqli: set_charset) instead of "SET NAMES". of course, this content is also described in the PHP Manual, but I didn't explain why.
Recently, several friends asked me this question. why?
When there are too many people to ask, I think I can write a blog to introduce this part of content.
First, many people do not know what "set names" is,
In my previous articles, I went deep into MySQL character set settings and introduced the "environment variables" of character_set_client/character_set_connection/character_set_results,
These three variables respectively tell the MySQL server, the client's replica set, the replica set when it is transmitted to the MySQL server, and the replica set that expects the results returned by MySQL.
For example, by using "set names utf8", I will tell the server that I am using UTF-8 encoding. I hope you will also return the UTF-8 encoding query results to me.
Generally, it is enough to use "set names" to ensure the correctness. Why does the manual recommend mysqli_set_charset (PHP> = 5.0.5?
First, let's take a look at what mysqli_set_charset has done (note that mysql_set_charset is similar to the asterisk annotation ):

// Php-5.2.11-SRC/ext/mysqli/mysqli_nonapi.c line 342
PHP_FUNCTION (mysqli_set_charset)
{
MY_MYSQL * mysql;
Zval * mysql_link;
Char * cs_name = NULL;
Unsigned int len;
If (zend_parse_method_parameters (ZEND_NUM_ARGS () TSRMLS_CC, getThis ()
, "OS", & mysql_link, mysqli_link_class_entry, & cs_name, & len) = FAILURE ){
Return;
}
MYSQLI_FETCH_RESOURCE (mysql, MY_MYSQL *, & mysql_link, "mysqli_link"
, MYSQLI_STATUS_VALID );
If (mysql_set_character_set (mysql-> mysql, cs_name )){
// ** Call the corresponding libmysql function
RETURN_FALSE;
}
RETURN_TRUE;
}

What does mysql_set_character_set do?

// Mysql-5.1.30-SRC/libmysql/client. c, line 3166:
Int STDCALL mysql_set_character_set (MYSQL * mysql, const char * cs_name)
{
Struct charset_info_st * cs;
Const char * save_csdir = charsets_dir;
If (mysql-> options. charset_dir)
Charsets_dir = mysql-> options. charset_dir;
If (strlen (cs_name) <MY_CS_NAME_SIZE &&
(Cs = get_charset_by_csname (cs_name, MY_CS_PRIMARY, MYF (0 ))))
{
Char buff [MY_CS_NAME_SIZE + 10];
Charsets_dir = save_csdir;
/* Skip execution of "set names" for pre-4.1 servers */
If (mysql_get_server_version (mysql) <40100)
Return 0;
Sprintf (buff, "set names % s", cs_name );
If (! Mysql_real_query (mysql, buff, strlen (buff )))
{
Mysql-> charset = cs;
}
}
// The following content is omitted

We can see that in addition to "set names", mysqli_set_charset has done one more step:

Sprintf (buff, "set names % s", cs_name );
If (! Mysql_real_query (mysql, buff, strlen (buff )))
{
Mysql-> charset = cs;
}

What is the role of charset, a member of the mysql core structure?
This tells us about mysql_real_escape_string (). The difference between this function and mysql_escape_string is that it considers the "current" character set. Where can this current character set come from?
By the way, you guessed it was mysql-> charset.
Mysql_real_string in the determination of wide character set characters, according to the member variables to adopt different policies, for example, if it is UTF-8, then libmysql/ctype-utf8.c will be used.
Check the instance. the default mysql connection character set is latin-1 (classic 5c problem ):

   $ Db = mysql_connect ('localhost: 100', 'root', '123 ');
Mysql_select_db ("test ");
$ A = "/x91/x5c ";//"
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.