Search



Search Results
Displaying 31 to 40 of 306 total results
https://dev.mysql.com/doc/refman/8.4/en/charset-table.html
Every table has a table character set and a table collation. The CREATE TABLE and ALTER TABLE statements have optional clauses for specifying the table character set and collation: CREATE TABLE tbl_name (column_list) [[DEFAULT] CHARACTER SET ...
https://dev.mysql.com/doc/refman/8.4/en/charset-examples.html
The following examples show how MySQL determines default character set and collation values. Example 1: Table and Column Definition CREATE TABLE t1 ( c1 CHAR(10) CHARACTER SET latin1 COLLATE latin1_german1_ci ) DEFAULT CHARACTER SET latin2 COLLATE ...Notice that there is no problem with storing a latin1 column in a latin2 ...
https://dev.mysql.com/doc/refman/8.4/en/charset-applications.html
For applications that store data using the default MySQL character set and collation (utf8mb4, utf8mb4_0900_ai_ci), no special configuration should be needed. If applications require data storage using a different character set or collation, you ...
https://dev.mysql.com/doc/refman/8.4/en/charset-general.html
A collation is a set of rules for comparing characters in a character set. What we've just done is apply a collation to our character set. The collation is a set of rules (only one rule in this case): “compare the encodings.” We call this ... A ...
https://dev.mysql.com/doc/refman/8.4/en/charset-server.html
MySQL Server has a server character set and a server collation. Initially, the server character set and collation depend on the options that you use when you start mysqld. If you specify only a character set (for example, utf8mb4) but not a ...By ...
https://dev.mysql.com/doc/refman/8.4/en/collation-diagnostics.html
For example, the following message results if a collation definition contains a <aaa> tag: [Warning] Buffered warning: Unknown LDML tag: 'charsets/charset/collation/rules/aaa' If collation initialization is not possible, the server reports an ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-charset.html
This section describes how to change the character set, collation, or both at the entity and entity-property level in an Entity Framework (EF) Core model. There are two distinct approaches available for configuring character sets and collations in ...Modifications made to the model affect the tables and columns generated from your ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-charset.html
This section describes how to change the character set, collation, or both at the entity and entity-property level in an Entity Framework (EF) Core model. There are two distinct approaches available for configuring character sets and collations in ...Modifications made to the model affect the tables and columns generated from your ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-set-charset-collation.html
Syntax: cnx.set_charset_collation(charset=None, collation=None) This method sets the character set and collation to be used for the current connection. When collation is None, the default collation for the character set is used. In the following ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-set-charset-collation.html
Syntax: cnx.set_charset_collation(charset=None, collation=None) This method sets the character set and collation to be used for the current connection. When collation is None, the default collation for the character set is used. In the following ...
Displaying 31 to 40 of 306 total results