blob: 6c121a5c06d43a48e42f5fa359cca373ee12a3d5 [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
25
26from _sqlite3 import *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000027
28paramstyle = "qmark"
29
30threadsafety = 1
31
32apilevel = "2.0"
33
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000034Date = datetime.date
35
36Time = datetime.time
37
38Timestamp = datetime.datetime
39
40def DateFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000041 return Date(*time.localtime(ticks)[:3])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000042
43def TimeFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000044 return Time(*time.localtime(ticks)[3:6])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000045
46def TimestampFromTicks(ticks):
Guido van Rossum3b843cc2006-08-17 22:37:44 +000047 return Timestamp(*time.localtime(ticks)[:6])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000048
Thomas Wouters477c8d52006-05-27 19:21:47 +000049version_info = tuple([int(x) for x in version.split(".")])
50sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000051
Guido van Rossumbae07c92007-10-08 02:46:15 +000052Binary = memoryview
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000053
Thomas Wouters477c8d52006-05-27 19:21:47 +000054def register_adapters_and_converters():
55 def adapt_date(val):
56 return val.isoformat()
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000057
Thomas Wouters477c8d52006-05-27 19:21:47 +000058 def adapt_datetime(val):
59 return val.isoformat(" ")
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000060
Thomas Wouters477c8d52006-05-27 19:21:47 +000061 def convert_date(val):
Guido van Rossum98297ee2007-11-06 21:34:58 +000062 return datetime.date(*map(int, val.split(b"-")))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000063
Thomas Wouters477c8d52006-05-27 19:21:47 +000064 def convert_timestamp(val):
Guido van Rossum98297ee2007-11-06 21:34:58 +000065 datepart, timepart = val.split(b" ")
66 year, month, day = map(int, datepart.split(b"-"))
67 timepart_full = timepart.split(b".")
68 hours, minutes, seconds = map(int, timepart_full[0].split(b":"))
Thomas Wouters477c8d52006-05-27 19:21:47 +000069 if len(timepart_full) == 2:
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000070 microseconds = int(timepart_full[1])
Thomas Wouters477c8d52006-05-27 19:21:47 +000071 else:
72 microseconds = 0
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000073
Thomas Wouters477c8d52006-05-27 19:21:47 +000074 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
75 return val
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000076
77
Thomas Wouters477c8d52006-05-27 19:21:47 +000078 register_adapter(datetime.date, adapt_date)
79 register_adapter(datetime.datetime, adapt_datetime)
80 register_converter("date", convert_date)
81 register_converter("timestamp", convert_timestamp)
82
83register_adapters_and_converters()
84
85# Clean up namespace
86
87del(register_adapters_and_converters)