Created
September 3, 2012 03:15
-
-
Save tsabat/3606499 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> show variables like 'collation%'; | |
+----------------------+-------------------+ | |
| Variable_name | Value | | |
+----------------------+-------------------+ | |
| collation_connection | latin1_swedish_ci | | |
| collation_database | latin1_swedish_ci | | |
| collation_server | latin1_swedish_ci | | |
+----------------------+-------------------+ | |
3 rows in set (0.00 sec) | |
mysql> show variables like 'char%'; | |
+--------------------------+----------------------------+ | |
| Variable_name | Value | | |
+--------------------------+----------------------------+ | |
| character_set_client | latin1 | | |
| character_set_connection | latin1 | | |
| character_set_database | latin1 | | |
| character_set_filesystem | binary | | |
| character_set_results | latin1 | | |
| character_set_server | latin1 | | |
| character_set_system | utf8 | | |
| character_sets_dir | /usr/share/mysql/charsets/ | | |
+--------------------------+----------------------------+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment