You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import sqlite3
|
|
import datetime
|
|
|
|
con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES)
|
|
cur = con.cursor()
|
|
cur.execute('select ? as "x [timestamp]"', (datetime.datetime.now(),))
|
|
dt = cur.fetchone()[0]
|
|
print(dt, type(dt))
|
|
|
|
con.close()
|