ubuntu emma 中文亂碼解決方案
阿新 • • 發佈:2019-02-20
在Linux如果使用mysql的圖形客戶端,我感覺Emma算一個好用的了。
比起mysql自己的Mysql Query Browser 要好, 而且最不能忍受的是Mysql Query Browser 在Ubuntu 11.10 會有程式崩潰現象。
相比而言emma是挺好,但是emma預設用apt-get 安裝的話,emma是不支援中文的,這個需要自己修改一下了配置檔案,或者直接修改emma程式原始檔了(emma 用python編寫的)。
apt-get安裝emma
- sudo apt-get install emma
如果你已經安裝完畢並且執行過emma,程式就會建立 ~/.emma/emmarc檔案,儲存你自己的一些配置。所以可以更改這裡的配置檔案,或者像下面直接修改emma的python原始檔。
- vim ~/.emma/emmarc
找到
- db_encoding=latin1
- db_encoding=utf8
- set names utf8
好了,但是每次新使用者都要改配置檔案,以及執行新sql前都加這個語句,豈不是很費力。而自己有很懶,並且我的資料庫大部分都是utf8的,所以直接修改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"
- sudo vim /usr/share/emma/emmalib/mysql_host.py
- 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()))
其實就是加了一句
- self.query("set names utf8", False)