Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/adding-collation-unicode-uca.html
                                 This section describes how to add a UCA collation for a Unicode character set by writing the <collation> element within a <charset> character set description in the MySQL Index.xml file. It uses a subset of the Locale Data Markup Language (LDML) ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-we-sets.html
                                 Western European character sets cover most West European languages, such as French, Spanish, Catalan, Basque, Portuguese, Italian, Albanian, Dutch, German, Danish, Swedish, Norwegian, Finnish, Faroese, Icelandic, Irish, Scottish, and English. ascii ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-set-character-set.html
                                 int mysql_set_character_set(MYSQL *mysql, const char *csname) Description This function is used to set the default character set for the current connection. The connection collation becomes the default collation of the character set. This function ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-collation-compatibility.html
                                 Each character set has one or more collations, but each collation is associated with one and only one character set. Therefore, the following statement causes an error message because the latin2_bin collation is not legal with the latin1 character ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-features-charset.html
                                 The following applies to replication between MySQL servers that use different character sets: If the source has databases with a character set different from the global character_set_server value, you should design your CREATE TABLE statements so ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-character-set-name.html
                                 Syntax: charset = ccnx.character_set_name() Returns the name of the default character set for the current MySQL session. When this is the case, a name usable by Python is returned. For example, the 'utf8mb4' MySQL character set name is returned as ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/string-collating.html
                                 For a simple character set named MYSET, sorting rules are specified in the MYSET.xml configuration file using <map> array elements within <collation> elements. If the sorting rules for your language are too complex to be handled with simple arrays, ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-set-character-set.html
                                 Syntax: ccnx.set_character_set(charset_name) Sets the default character set for the current session. The only argument permitted is a string that contains the character set name. Raises a TypeError exception if the argument is not a PyString_type. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/information-schema-collation-character-set-applicability-table.html
                                 The COLLATION_CHARACTER_SET_APPLICABILITY table indicates what character set is applicable for what collation. CHARACTER_SET_NAME The name of the character set with which the collation is associated. Notes The COLLATION_CHARACTER_SET_APPLICABILITY ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-character-set-name.html
                                 const char * mysql_character_set_name(MYSQL *mysql) Description Returns the default character set name for the current connection.