dbapi2.py 2.6 KB

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