How to set charset=utf-8 in Mysql?

Asked

Viewed 3,629 times

3

I’m trying to set up the charset=utf-8 in MYSQL, but not found in my.ini file. In which file configure ?

1 answer

3


I got added on my.ini itself

[client]
default-character-set=utf8

[mysql]
default-character-set=utf8


[mysqld]
collation-server = utf8_unicode_ci
init-connect='SET NAMES utf8'
character-set-server = utf8

Creditos para @Guilherme Nascimento.. ;) vlw

Browser other questions tagged

You are not signed in. Login or sign up in order to post.