- 论坛徽章:
- 0
|
本帖最后由 nakar 于 2011-10-27 11:43 编辑
mysql版本是: Server version: 5.5.16 MySQL Community Server (GPL)
python版本: 2.7.2- mysql> show variables like "char%";
- +--------------------------+----------------------------------------------------
- -----+
- | Variable_name | Value
- |
- +--------------------------+----------------------------------------------------
- -----+
- | character_set_client | utf8
- |
- | character_set_connection | utf8
- |
- | character_set_database | utf8
- |
- | character_set_filesystem | binary
- |
- | character_set_results | utf8
- |
- | character_set_server | utf8
- |
- | character_set_system | utf8
- |
- | character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.5\share\chars
- ets\ |
- +--------------------------+----------------------------------------------------
复制代码 数据库数据显示:- mysql> select * from t_article
- -> ;
- +-----+----------------------+-----------------------+--------------------------
- --------------------------+-------------+
- | aid | article_name | author | summary
- | type |
- +-----+----------------------+-----------------------+--------------------------
- -------------------------+-------------+
- | 1 | 鐖朵笌瀛? | 寮犲北 | 鏃ュ父绗戣瘽銆傘俓./
- 锛?8 | 鍟ユ槸銆俴k |
- | 2 | 鍗佷竾data minging | 缃戦熺殑has浜笢鏂? | 7&&&(**%^^%^%闃挎
- 柉椤垮彂鏂拏鑺噾楦块闇滈檷 | 鎾掑搱.銆俴 |
- +-----+----------------------+-----------------------+--------------------------
- --------------------------+-------------+
- 2 rows in set (0.02 sec)
复制代码 读取mysql的脚本:- conn = MySQLdb.connect(host='localhost', user='root',passwd='root',charset='utf8')
- cur=conn.cursor()
- cur.execute("SET NAMES 'utf8'")
- cur.execute("SET CHARACTER_SET_CLIENT=utf8")
- cur.execute("SET CHARACTER_SET_RESULTS=utf8")
- cur.execute('use testdb')
- cur.execute('select * from t_article limit 100')
- for i in cur.fetchall():
- print i
复制代码 读出来的数据貌似unicode编码。- (1L, u'\u7236\u4e0e\u5b50', u'\u5f20\u5c71', u'\u65e5\u5e38\u7b11\u8bdd\u3002\u3002\\./\uff1f88', u'\u5565\u662f\u3002kk')
- (2L, u'\u5341\u4e07data minging ', u'\u7f51\u901f\u7684has\u4eac\u4e1c\u65b9', u' 7&&&(**%^^%^%\u963f\u65af\u987f\u53d1\u65af\u8482\u82ac\u91d1\u9e3f\u98de\u971c\u964d', u'\u6492\u54c8.\u3002k')
复制代码 |
|