mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
bpo-45335: Add note to sqlite3
docs about "timestamp" converter (GH-29200)
This commit is contained in:
parent
f0150ac94a
commit
3877fc02f7
1 changed files with 6 additions and 0 deletions
|
@ -1095,6 +1095,12 @@ If a timestamp stored in SQLite has a fractional part longer than 6
|
|||
numbers, its value will be truncated to microsecond precision by the
|
||||
timestamp converter.
|
||||
|
||||
.. note::
|
||||
|
||||
The default "timestamp" converter ignores UTC offsets in the database and
|
||||
always returns a naive :class:`datetime.datetime` object. To preserve UTC
|
||||
offsets in timestamps, either leave converters disabled, or register an
|
||||
offset-aware converter with :func:`register_converter`.
|
||||
|
||||
.. _sqlite3-controlling-transactions:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue