Sign in
android
/
toolchain
/
python
/
refs/heads/ndk-r14-release
/
.
/
Python-2.7.5
/
Doc
/
includes
/
sqlite3
/
parse_colnames.py
blob: fcded00f3c29560f5310d20e4956192bc3f612ee [
file
] [
log
] [
blame
] [
edit
]
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
)