小编典典

如何从SQLite中从sqlite读取日期时间而不是Python中的字符串?

python

我在Python
2.6.4中使用sqlite3模块将日期时间存储在SQLite数据库中。插入它非常容易,因为sqlite自动将日期转换为字符串。问题是,读取时它以字符串形式返回,但是我需要重建原始的datetime对象。我该怎么做呢?


阅读 214

收藏
2020-12-20

共1个答案

小编典典

如果用时间戳记类型声明列,那么您将处于三叶草中:

>>> db = sqlite3.connect(':memory:', detect_types=sqlite3.PARSE_DECLTYPES)
>>> c = db.cursor()
>>> c.execute('create table foo (bar integer, baz timestamp)')
<sqlite3.Cursor object at 0x40fc50>
>>> c.execute('insert into foo values(?, ?)', (23, datetime.datetime.now()))
<sqlite3.Cursor object at 0x40fc50>
>>> c.execute('select * from foo')
<sqlite3.Cursor object at 0x40fc50>
>>> c.fetchall()
[(23, datetime.datetime(2009, 12, 1, 19, 31, 1, 40113))]

看到?int(对于声明为整数的列而言)和datetime(对于声明为timestamp的列而言)都将保留类型为原样的往返。

2020-12-20