dbapi2.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # -*- 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. import collections
  24. import datetime
  25. import time
  26. from _sqlite3 import *
  27. paramstyle = "qmark"
  28. threadsafety = 1
  29. apilevel = "2.0"
  30. Date = datetime.date
  31. Time = datetime.time
  32. Timestamp = datetime.datetime
  33. def DateFromTicks(ticks):
  34. return Date(*time.localtime(ticks)[:3])
  35. def TimeFromTicks(ticks):
  36. return Time(*time.localtime(ticks)[3:6])
  37. def TimestampFromTicks(ticks):
  38. return Timestamp(*time.localtime(ticks)[:6])
  39. version_info = tuple([int(x) for x in version.split(".")])
  40. sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
  41. Binary = buffer
  42. collections.Sequence.register(Row)
  43. def register_adapters_and_converters():
  44. def adapt_date(val):
  45. return val.isoformat()
  46. def adapt_datetime(val):
  47. return val.isoformat(" ")
  48. def convert_date(val):
  49. return datetime.date(*map(int, val.split("-")))
  50. def convert_timestamp(val):
  51. datepart, timepart = val.split(" ")
  52. year, month, day = map(int, datepart.split("-"))
  53. timepart_full = timepart.split(".")
  54. hours, minutes, seconds = map(int, timepart_full[0].split(":"))
  55. if len(timepart_full) == 2:
  56. microseconds = int('{:0<6.6}'.format(timepart_full[1].decode()))
  57. else:
  58. microseconds = 0
  59. val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
  60. return val
  61. register_adapter(datetime.date, adapt_date)
  62. register_adapter(datetime.datetime, adapt_datetime)
  63. register_converter("date", convert_date)
  64. register_converter("timestamp", convert_timestamp)
  65. register_adapters_and_converters()
  66. # Clean up namespace
  67. del(register_adapters_and_converters)