当我使用:
cursor.execute('select * from some_table where name = "小明"; ')
类似这样的操作时,明明 some_table 有符合要求的对象,但是依然返回 empty。
经过修改my.ini 将各种character_set = utf8之后毫无效果。
后来尝试将连接改为:
db = MySQLdb.connect(host="localhost",user='root',passwd="******",db="******",charset="gbk") #注意这里是 gbk
成功!
另外,我的 MySQL command line 做上述查询也无返回,查询前需要先执行
set names gbk