parameter unsupported when inserting int in sqlite(在sqlite中插入int时不支持参数)
问题描述
我一直在反复在 SQLite3 中存储日期和时间,目的是稍后使用比较检索记录,例如SELECT * WHERE date1 <日期2
I have been going around and around with storing date and time in SQLite3 with the intention of retrieving the records using comparisons later e.g. SELECT * WHERE date1 < date2
我终于放弃了存储 datetime.datetime 对象的尝试,并决定使用 UNIX 时间戳,因为它们只是一个 int 且易于操作,但我仍然遇到错误.
I finally gave up trying to store datetime.datetime objects and decided to use a UNIX timestamp instead as they are just an int and easy to manipulate but I am still getting errors.
import sqlite3 as lite
import datetime
import time
conn = lite.connect('dispatcher.db')
cur = conn.cursor()
query = "create table if not exists new_test (curent_dt)"
cur.execute(query)
conn.commit()
now = datetime.datetime.now() - datetime.timedelta(minutes=60)
temp = int(time.mktime(now.timetuple()))
cur.execute('insert into new_test (curent_dt) values (? )', (temp))
conn.commit()
conn.close()
返回以下错误:
cur.execute('insert into new_test (curent_dt) values (? )', (temp))ValueError: 参数的类型不受支持
cur.execute('insert into new_test (curent_dt) values (? )', (temp)) ValueError: parameters are of unsupported type
在进一步调查问题后,我发现您必须使用尾随逗号来创建单个元素元组,例如(temp,)
After investigating the problem a little further I found that you have to use a trailing comma to create a single element tuple e.g. (temp,)
推荐答案
注意下面temp"后添加的逗号:
Note the added comma after "temp" below:
cur.execute('insert into new_test (curent_dt) values (?)', (temp,))
发生这种情况的原因是 (temp) 是一个整数,而 (temp,) 是一个包含 temp 的长度为 1 的元组.
The reason this happens is that (temp) is an integer but (temp,) is a tuple of length one containing temp.
这篇关于在sqlite中插入int时不支持参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在sqlite中插入int时不支持参数
基础教程推荐
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 无法解决整理冲突 2021-01-01
