change default collation in phpmyadmin

后端 未结 8 811
野的像风
野的像风 2020-12-23 17:05

It seems to me that phpMyAdmin imports tables by default with collation latin1_swedish_ci, how i change this?

8条回答
  •  一向
    一向 (楼主)
    2020-12-23 17:33

    In your Mysql configuration change the default-character-set operative under the [mysqld] tab. For example:

    [mysqld]
    default-character-set=utf8
    

    Don't forget to restart your Mysql server afterwards for the changes to take effect.

提交回复
热议问题