summaryrefslogtreecommitdiff
path: root/Doc/includes/sqlite3/parse_colnames.py
blob: cc68c76459eceabe2ec868ac8b1f373d59f303cb (plain)
1
2
3
4
5
6
7
8
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))