您的位置:首页技术文章
文章详情页

python2.7 mysql execute()问题

浏览:35日期:2022-06-12 17:25:25

问题描述

插入数据的部分代码:

try:sql = 'INSERT INTO {}({}) VALUES(%s)'.format(table,cols) % q[0]print sql result = self.cur.executemany(sql,q)#result = self.cur.execute(sql)insert_id = self.db.insert_id()self.db.commit()#判断是否执行成功if result: return insert_idelse: return 0 except MySQLdb.Error,e:#发生错误时回滚print '数据库错误,原因%d: %s' % (e.args[0], e.args[1]) self.db.rollback()

在执行完程序后得到

[(u’'',' http://sz.centanet.com/ershoufang/szlg13772053.html',' 345u4e07|3u5ba42u5385|74.89u5e73',' u5357|2007u5e74|u4f4eu5c42(u517134u5c42)|u8c6au88c5|u5eb7u8fbeu5c14u82b1u56edu4e94u671f(u8774u8776u5821)|'’,)]INSERT INTO zydc(follow, house_url, price_area, houseinfo) VALUES(%s)数据库错误,原因1136: Column count doesn’t match value count at row 1None

那条insert语句我在数据库中手动输入时并没有问题,但是不知道为什么execute出错。当我向一个只存链接的表插入数据时,是完全没问题的。刚刚我想输出错误原因时,发现数据竟然迷之插入成功了,然后我试图用executemany()后就又出现错误了。

问题解答

回答1:

最后我放弃使用executemany()了。

INSERT INTO employees (first_name, hire_date)VALUES (’Jane’, ’2005-02-12’), (’Joe’, ’2006-05-23’), (’John’, ’2010-10-03’)

直接用上面这种形式,execute()就好。https://dev.mysql.com/doc/con...

标签: Python 编程
相关文章: