Python论坛  - 讨论区

标题:[python-chinese] 使用中文邮件列表默认签名?

2006年12月07日 星期四 14:24

Bruce Wang number5在gmail.com
星期四 十二月 7 14:24:29 HKT 2006

On 12/7/06, Yuehao Luo <Yuehao.Luo在jdsu.com> wrote:
>
> Í˶©.лл!
>
>
> Thanks
> Howard_Luo
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


ËƺõºÜ¶àÈË¿´²»¶®Ä¬ÈÏÇ©ÃûÀïÃæµÄÒâ˼£¬ »»¸öÖÐÎĵÄÊÔÊÔ£¿

--~--~---------~--~----~------------~-------~--~----~
  ÄúÊÕµ½´ËÐÅÏ¢ÊÇÓÉÓÚÄú¶©ÔÄÁËpython-chinese ÓʼþÁбí
 ÒªÔÚ´ËÁÐ±í·¢Ìû£¬Çë·¢µç×ÓÓʼþµ½ python-chinese在lists.python.cn <NPO2在googlegroups.com>
 ÒªÍ˶©´ËÁÐ±í£¬Çë·¢ÓʼþÖÁ python-chinese-request在lists.python.cn
 ¸ü¶àÑ¡ÏÇëͨ¹ý http://python.cn/mailman>
/listinfo/python-chinese <http://python.cn/mailman/listinfo/python-chinese>·ÃÎÊ
-~----------~----~----~----~------~----~------~--~---


-- 
simple is good
http://brucewang.net
skype: number5
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20061207/539a4bf2/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 14:53

3751 lwm3751在gmail.com
星期四 十二月 7 14:53:02 HKT 2006

象我这种当年四级都过不了的人都看得懂,是他们没认真看吧.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20061207/ee2d8680/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 14:55

3751 lwm3751在gmail.com
星期四 十二月 7 14:55:09 HKT 2006

学python却不肯使用英语,这种人走光也罢了,估计他们也学不到什么程度.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20061207/3db6dc4f/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 14:58

Xiaobin Sun xbsun在metarnet.com
星期四 十二月 7 14:58:55 HKT 2006

python-chinese£¬ÄãºÃ
safsadfsdafasdf

Xiaobin Sun£¬xbsun在metarnet.com
2006-12-07 
----- Original Message ----- 
From: 3751 
To: python-chinese 
Sent: 2006-12-07, 14:55:09
Subject: Re: [python-chinese]ʹÓÃÖÐÎÄÓʼþÁбíĬÈÏÇ©Ãû£¿


ѧpythonÈ´²»¿ÏʹÓÃÓ¢Óï,ÕâÖÖÈË×ß¹âÒ²°ÕÁË,¹À¼ÆËûÃÇҲѧ²»µ½Ê²Ã´³Ì¶È.
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20061207/fa732808/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 15:15

李建恩 janux在boulder.com.cn
星期四 十二月 7 15:15:04 HKT 2006

在 06-12-7,janux<janux在boulder.com.cn> 写道:
>
> #!J:/activepython
> # -*- coding: utf-8 -*-
> import MySQLdb
> print "ok"
> db=MySQLdb.Connect("localhost","root","root",db="sp9",charset="utf8")
> cu=db.cursor()
> sql="insert into test values(%s,%s,%s)"
> param=(5,"china","国")
> cu.execute(sql,param)
> db.commit()
> cu.execute("select * from test")
> for row in cu.fetchall():
>    for fd in row:
>  print fd
>
> ===========================我运行上面的程序,总提示说,插入数据太长.列为第3列.
> 如果sql="""insert into test values(5,'china','中国')""" 还会出现编码问题?我
读数据倒是正常的...
> 很郁闷啊,网上好多讲的也不清楚,试了好多词都不行啊.那位给以给个正确的例子啊?
> 我用的是mysql5.0 数据库和表的编码都是utf8,python2.4,MySQLdb驱动是刚下的.....
> 如果能够提供一个python+mysql的开源的项目参考则实在幸甚...TKS
>
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
上面的插入多少个en文字符都没有问题,可以一个中文字符都不行:提示说数据太长。
我是在winxp_sp2的系统,set name 'utf8' 是怎么之执行?不知道是昨回事
了??????????????????




[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 15:25

Yingbo Qiu qiuyingbo在gmail.com
星期四 十二月 7 15:25:05 HKT 2006

cu.execute("set names 'utf8'")

2006/12/7, 李建恩 <janux at boulder.com.cn>:
> 在 06-12-7,janux<janux at boulder.com.cn> 写道:
> >
> > #!J:/activepython
> > # -*- coding: utf-8 -*-
> > import MySQLdb
> > print "ok"
> > db=MySQLdb.Connect("localhost","root","root",db="sp9",charset="utf8")
> > cu=db.cursor()
> > sql="insert into test values(%s,%s,%s)"
> > param=(5,"china","国")
> > cu.execute(sql,param)
> > db.commit()
> > cu.execute("select * from test")
> > for row in cu.fetchall():
> >    for fd in row:
> >  print fd
> >
> > ===========================我运行上面的程序,总提示说,插入数据太长.列为第3列.
> > 如果sql="""insert into test values(5,'china','中国')""" 还会出现编码问题?我
> 读数据倒是正常的...
> > 很郁闷啊,网上好多讲的也不清楚,试了好多词都不行啊.那位给以给个正确的例子啊?
> > 我用的是mysql5.0 数据库和表的编码都是utf8,python2.4,MySQLdb驱动是刚下的.....
> > 如果能够提供一个python+mysql的开源的项目参考则实在幸甚...TKS
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> 上面的插入多少个en文字符都没有问题,可以一个中文字符都不行:提示说数据太长。
> 我是在winxp_sp2的系统,set name 'utf8' 是怎么之执行?不知道是昨回事
> 了??????????????????
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月07日 星期四 15:45

snowwolf.wang snowwolf.wang在gmail.com
星期四 十二月 7 15:45:06 HKT 2006

我也遇到过这个问题,查了n多资料之后,找到一个解决办法:

(1)、在MySql中定义表的时候,把表字段的编码设置为 utf-8
(2)、连接数据库时,在MySQLdb.connect()之后添加如下代码:
def __csn(*args, **kwargs):
            return 'utf8'
self.__conn.character_set_name = __csn

(3)、在执行Sql之前,先执行"set names utf8"

这样不管时插入、读取中文应该都没有问题了。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月12日 星期二 00:21

武长斌 chbin.w在gmail.com
星期二 十二月 12 00:21:42 HKT 2006

指出一个问题, 5 和 %s 有关系么?

是不是先把数据类型的问题解决了

2006/12/7, snowwolf. wang <snowwolf.wang at gmail.com>:
> 我也遇到过这个问题,查了n多资料之后,找到一个解决办法:
>
> (1)、在MySql中定义表的时候,把表字段的编码设置为 utf-8
> (2)、连接数据库时,在MySQLdb.connect()之后添加如下代码:
> def __csn(*args, **kwargs):
>            return 'utf8'
> self.__conn.character_set_name = __csn
>
> (3)、在执行Sql之前,先执行"set names utf8"
>
> 这样不管时插入、读取中文应该都没有问题了。
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


-- 
武长斌
chbin.w at gmail.com

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号