Skip to content

Commit

Permalink
Mysql UTF8 names
Browse files Browse the repository at this point in the history
+----------------------+-----------------+
| Variable_name        | Value           |
+----------------------+-----------------+
| collation_connection | utf8_unicode_ci |
| collation_database   | utf8_unicode_ci |
| collation_server     | utf8_unicode_ci |
+----------------------+-----------------+

From http://stackoverflow.com/a/9350444
  • Loading branch information
esemeniuc committed Jun 24, 2013
1 parent c00574b commit b9ed1b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,10 @@ query_cache_size = 0
table_cache = 32
init_connect='SET collation_connection = utf8_unicode_ci'
character-set-server = utf8
collation-server = utf8_unicode_ci
init_connect='SET NAMES utf8'
character-set-server = utf8
collation-server = utf8_unicode_ci
skip-character-set-client-handshake
default_storage_engine=MyISAM
skip-innodb
Expand Down

0 comments on commit b9ed1b8

Please sign in to comment.