blob: 991682ce9ef3b732d471219c82c47399f95c9cef [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001# pysqlite2/dbapi2.py: the DB-API 2.0 interface
2#
Florent Xiclunae01de8f2010-08-30 14:05:50 +00003# Copyright (C) 2004-2005 Gerhard Häring <gh@ghaering.de>
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004#
5# This file is part of pysqlite.
6#
7# This software is provided 'as-is', without any express or implied
8# warranty. In no event will the authors be held liable for any damages
9# arising from the use of this software.
10#
11# Permission is granted to anyone to use this software for any purpose,
12# including commercial applications, and to alter it and redistribute it
13# freely, subject to the following restrictions:
14#
15# 1. The origin of this software must not be misrepresented; you must not
16# claim that you wrote the original software. If you use this software
17# in a product, an acknowledgment in the product documentation would be
18# appreciated but is not required.
19# 2. Altered source versions must be plainly marked as such, and must not be
20# misrepresented as being the original software.
21# 3. This notice may not be removed or altered from any source distribution.
22
23import datetime
Thomas Wouters477c8d52006-05-27 19:21:47 +000024import time
Serhiy Storchaka47a98132014-05-28 12:58:34 +030025import collections.abc
Thomas Wouters477c8d52006-05-27 19:21:47 +000026
27from _sqlite3 import *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000028
29paramstyle = "qmark"
30
31threadsafety = 1
32
33apilevel = "2.0"
34
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000035Date = datetime.date
36
37Time = datetime.time
38
39Timestamp = datetime.datetime
40
41def DateFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000042 return Date(*time.localtime(ticks)[:3])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000043
44def TimeFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000045 return Time(*time.localtime(ticks)[3:6])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000046
47def TimestampFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000048 return Timestamp(*time.localtime(ticks)[:6])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000049
Thomas Wouters477c8d52006-05-27 19:21:47 +000050version_info = tuple([int(x) for x in version.split(".")])
51sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000052
Guido van Rossumbae07c92007-10-08 02:46:15 +000053Binary = memoryview
Serhiy Storchaka47a98132014-05-28 12:58:34 +030054collections.abc.Sequence.register(Row)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000055
Thomas Wouters477c8d52006-05-27 19:21:47 +000056def register_adapters_and_converters():
57 def adapt_date(val):
58 return val.isoformat()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000059
Thomas Wouters477c8d52006-05-27 19:21:47 +000060 def adapt_datetime(val):
61 return val.isoformat(" ")
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000062
Thomas Wouters477c8d52006-05-27 19:21:47 +000063 def convert_date(val):
Guido van Rossum98297ee2007-11-06 21:34:58 +000064 return datetime.date(*map(int, val.split(b"-")))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000065
Thomas Wouters477c8d52006-05-27 19:21:47 +000066 def convert_timestamp(val):
Guido van Rossum98297ee2007-11-06 21:34:58 +000067 datepart, timepart = val.split(b" ")
68 year, month, day = map(int, datepart.split(b"-"))
69 timepart_full = timepart.split(b".")
70 hours, minutes, seconds = map(int, timepart_full[0].split(b":"))
Thomas Wouters477c8d52006-05-27 19:21:47 +000071 if len(timepart_full) == 2:
Petri Lehtinen5f794092013-02-26 21:32:02 +020072 microseconds = int('{:0<6.6}'.format(timepart_full[1].decode()))
Thomas Wouters477c8d52006-05-27 19:21:47 +000073 else:
74 microseconds = 0
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000075
Thomas Wouters477c8d52006-05-27 19:21:47 +000076 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
77 return val
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000078
79
Thomas Wouters477c8d52006-05-27 19:21:47 +000080 register_adapter(datetime.date, adapt_date)
81 register_adapter(datetime.datetime, adapt_datetime)
82 register_converter("date", convert_date)
83 register_converter("timestamp", convert_timestamp)
84
85register_adapters_and_converters()
86
87# Clean up namespace
88
89del(register_adapters_and_converters)