Python mysqldb执行execute时出现InterfaceError: (0, '')
说明一下情况,execute()中执行的是一条update语句,但是测试的时候,实际上这时这张表里是没数据的,执行的时候出现了
File "D:\Python279\lib\site-packages\MySQLdb\cursors.py", line 155, in execute
charset = db.character_set_name()
InterfaceError: (0, '')
求大神们帮忙解答谢谢!!! (:зゝ∠)
无节操的右脚
11 years, 9 months ago
Answers
刚刚找到原因了,对任何已经close的conn进行 db相关 操作,包括ping()都会爆出这个错误。(这说明 长时间idle导致的conn失效与 conn.close()之后的状态是不一样的)精确catch 这个错误的Exception 是 MySQLdb.Error
从 http://www.cnblogs.com/bugmaker/articles/2444905.html 这里来的
红白塞钱箱
answered 11 years, 9 months ago