From b9ed1b885033347c56185881fd02894a4781d938 Mon Sep 17 00:00:00 2001 From: cwaffles Date: Sun, 23 Jun 2013 17:32:47 -0700 Subject: [PATCH] Mysql UTF8 names +----------------------+-----------------+ | Variable_name | Value | +----------------------+-----------------+ | collation_connection | utf8_unicode_ci | | collation_database | utf8_unicode_ci | | collation_server | utf8_unicode_ci | +----------------------+-----------------+ From http://stackoverflow.com/a/9350444 --- setup-debian.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup-debian.sh b/setup-debian.sh index 5c12d76..dbb32b8 100644 --- a/setup-debian.sh +++ b/setup-debian.sh @@ -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