吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1437|回复: 2
收起左侧

[Python 转载] sqlite3报错:错误类型求解决方案

[复制链接]
zzcjack08 发表于 2022-2-17 15:13
[Python] 纯文本查看 复制代码
                   for i in range(10):
            if id_list[i] == 0:
                pass
            else:
                quantity_ago = cursor.execute('select quantity from %s where id = ?' % username,id_list[i])
                print(quantity_ago.fetchall())
                cursor.execute('update %s set quantity = ? where id =?' % username,(quantity_list[i],id_list[i]))
报错:    quantity_ago = cursor.execute('select quantity from %s where id = ?' % username,id_list)ValueError: parameters are of unsupported typeid_list,quantity_list 均为纯int类型的list数据库:quantity integer类型 ; id 主键自增 integer类型求解决方案

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

JuncoJet 发表于 2022-2-17 15:35
这语法是用 ? 的么
quantity_ago = cursor.execute('select quantity from %s where id = %s' %( username,id_list[i]))
试试 ,没用过SQLite,只用MySQL
 楼主| zzcjack08 发表于 2022-2-18 18:14
JuncoJet 发表于 2022-2-17 15:35
这语法是用 ? 的么
quantity_ago = cursor.execute('select quantity from %s where id = %s' %( username ...

pymysql是用%s
sqlite3是用?的
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 07:43

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表