blob: 65eaf9bac4b99a3e1b7a1cc52ec6e864e05ba92b [file] [log] [blame]
Anthony Baxterc51ee692006-04-01 00:57:31 +00001#-*- coding: ISO-8859-1 -*-
2# pysqlite2/dbapi2.py: the DB-API 2.0 interface
3#
4# Copyright (C) 2004-2005 Gerhard Häring <gh@ghaering.de>
5#
6# This file is part of pysqlite.
7#
8# This software is provided 'as-is', without any express or implied
9# warranty. In no event will the authors be held liable for any damages
10# arising from the use of this software.
11#
12# Permission is granted to anyone to use this software for any purpose,
13# including commercial applications, and to alter it and redistribute it
14# freely, subject to the following restrictions:
15#
16# 1. The origin of this software must not be misrepresented; you must not
17# claim that you wrote the original software. If you use this software
18# in a product, an acknowledgment in the product documentation would be
19# appreciated but is not required.
20# 2. Altered source versions must be plainly marked as such, and must not be
21# misrepresented as being the original software.
22# 3. This notice may not be removed or altered from any source distribution.
23
24import datetime
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000025import time
26
27from _sqlite3 import *
Anthony Baxterc51ee692006-04-01 00:57:31 +000028
29paramstyle = "qmark"
30
31threadsafety = 1
32
33apilevel = "2.0"
34
Anthony Baxterc51ee692006-04-01 00:57:31 +000035Date = datetime.date
36
37Time = datetime.time
38
39Timestamp = datetime.datetime
40
41def DateFromTicks(ticks):
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000042 return apply(Date, time.localtime(ticks)[:3])
Anthony Baxterc51ee692006-04-01 00:57:31 +000043
44def TimeFromTicks(ticks):
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000045 return apply(Time, time.localtime(ticks)[3:6])
Anthony Baxterc51ee692006-04-01 00:57:31 +000046
47def TimestampFromTicks(ticks):
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000048 return apply(Timestamp, time.localtime(ticks)[:6])
Anthony Baxterc51ee692006-04-01 00:57:31 +000049
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000050version_info = tuple([int(x) for x in version.split(".")])
51sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
Anthony Baxterc51ee692006-04-01 00:57:31 +000052
53Binary = buffer
54
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000055def register_adapters_and_converters():
56 def adapt_date(val):
57 return val.isoformat()
Anthony Baxterc51ee692006-04-01 00:57:31 +000058
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000059 def adapt_datetime(val):
60 return val.isoformat(" ")
Anthony Baxterc51ee692006-04-01 00:57:31 +000061
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000062 def convert_date(val):
63 return datetime.date(*map(int, val.split("-")))
Anthony Baxterc51ee692006-04-01 00:57:31 +000064
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000065 def convert_timestamp(val):
66 datepart, timepart = val.split(" ")
67 year, month, day = map(int, datepart.split("-"))
68 timepart_full = timepart.split(".")
69 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
70 if len(timepart_full) == 2:
Gerhard Häring0741a602007-01-14 01:43:50 +000071 microseconds = int(timepart_full[1])
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000072 else:
73 microseconds = 0
Anthony Baxterc51ee692006-04-01 00:57:31 +000074
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000075 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
76 return val
Anthony Baxterc51ee692006-04-01 00:57:31 +000077
78
Gerhard Häring3e99c0a2006-04-23 15:24:26 +000079 register_adapter(datetime.date, adapt_date)
80 register_adapter(datetime.datetime, adapt_datetime)
81 register_converter("date", convert_date)
82 register_converter("timestamp", convert_timestamp)
83
84register_adapters_and_converters()
85
86# Clean up namespace
87
88del(register_adapters_and_converters)