change default collation in phpmyadmin

后端 未结 8 830
野的像风
野的像风 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:24

    I wanted to use utf8mb4 instead, and the configuration had to be the following:

    collation_server = utf8mb4_general_ci
    character_set_server=utf8mb4
    

    the server would not start if the character_set was set to utf8

提交回复
热议问题