解决mac平台的mysql+python的中文乱码问题

首先,针对mysql数据库来说,它的默认字符是:latin1 我们写不进去中文的罪魁祸首就是这个latin1。那么,对应的解决办法就是将这个字符集改成UTF-8 那么,最简便的方法:对于window(修改my.ini配置文件),my.ini在哪里,如何修改成UTF-8如下: https://www.cnblogs.com/Ray-xujianguo/p/3322455.html 对于mac平
摘要由CSDN通过智能技术生成

首先,针对mysql数据库来说,它的默认字符是:latin1
我们写不进去中文的罪魁祸首就是这个latin1。那么,对应的解决办法就是将这个字符集改成UTF-8
那么,最简便的方法:对于window(修改my.ini配置文件),my.ini在哪里,如何修改成UTF-8如下:
https://www.cnblogs.com/Ray-xujianguo/p/3322455.html
对于mac平台(修改/etc/my.cnf配置文件),但事实却是我们在/etc下面没有my.cnf配置文件。这时候就要我们自己写一个my.cnf配置文件支持UTF-8
我们用vim 在/etc路径下新建一个my.cnf(记得用sudo命令哦),

sudo vim my.cnf

然后将如下代码拷贝到my.cnf里面:

# Example MySQL config file for medium systems.  
  #  
  # This is for a system with little memory (32M - 64M) where MySQL plays  
  # an important part, or systems up to 128M where MySQL is used together with  
  # other programs (such as a web server)  
  #  
  # MySQL programs look for option files in a set of  
  # locations which depend on the deployment platform.  
  # You can copy this option file to one of those  
  # locations. For information about these locations, see:  
  # http://dev.mysql.com/doc/mysql/en/option-files.html  
  #  
  # In this file, you can use all long options that a program supports.  
  # If you want to know which options a program supports, run the program  
  # with the "--help" option.  
  # The following options will be passed to all MySQL clients  
  [client]
  default-character-set=utf8
  #password   = your_password  
  port        = 3306  
  socket      = /tmp/mysql.sock   
  # Here follows entries for some specific
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值