vstree
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 0, comments - 1, trackbacks - 0
<
2025年1月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
留言簿
给我留言
查看公开留言
查看私人留言
文章分类
android
j2ee(1)
python(2)
文章档案
2011年5月 (1)
2010年3月 (2)
搜索
最新评论
1. re: easy_install 安装软件 及BeautifulSoup 中文乱码[未登录]
easy_install BeautifulSoup
--xx
MySQLdb 中文 乱码
今天测试了一下python mysqlsb 库,发现插入中文数据时会出现乱码。
解决方案:数据库连接时,设置字符集为utf8。数据库和表的字符集也设置成utf8。
conn
=
MySQLdb.connect(host
=
'
localhost
'
,user
=
'
root
'
, passwd
=
'
root
'
, db
=
'
test
'
, charset
=
'
utf8
'
)
posted on 2010-03-09 15:53
Lauging Boy
阅读(228)
评论(0)
编辑
收藏
所属分类:
python
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
easy_install 安装软件 及BeautifulSoup 中文乱码
MySQLdb 中文 乱码