ubuntu mysql客戶端emma中文亂碼問題解決
emma默認用apt-get 安裝的話,emma是不支持中文的,配置文件或直接修改emma程序源文件(python)。
apt-get安裝emma
sudo apt-get install emma
www.2cto.com
如果你已經安裝完畢並且運行過emma,程序就會創建 ~/.emma/emmarc文件,保存配置。所以可以更改這裡的配置文件,或者像下面直接修改emma的python源文件。
vim ~/.emma/emmarc
找到
db_encoding=latin1
改為
db_encoding=utf8
重新運行emma,此時發現還是亂碼,在執行所有的sql語句之前加入這條sql語句,
set names utf8
按ctrl+enter執行之後,ok!
www.2cto.com
但每次新用戶都要改配置文件,以及執行新sql前都加這個語句,豈不是很費力,直接修改emma的源文件,來實現,新創建的emmrc配置文件就是utf8,和當選擇數據庫時,自動的執行“set names utf8” 語句。
ubuntu的apt-get 安裝emma是在/usr/share/emma目錄下面。
cd /usr/share/emma/emmalib
sudo vim __init__.py
找到
"db_encoding": "latin1"
改為
"db_encoding": "utf8"
保存退出。以後新創建的配置文件默認就會是utf8的解碼了,我想在連接數據之後就執行 “set names utf8” 語句,所以
www.2cto.com
sudo vim /usr/share/emma/emmalib/mysql_host.py
跳到155行左右的_use_db(self, name, do_query=True)函數哪裡,改成如下
def _use_db(self, name, do_query=True):
if self.current_db and name == self.current_db.name: return
if do_query:
self.query("use `%s`" % name, False)
self.query("set names utf8", False)
try:
self.current_db = self.databases[name]
except KeyError:
print "Warning: used an unknown database %r! please refresh host!\n%s" % (name, "".join(traceback.format_stack()))