2006-05-02 09:31:56 +08:00
|
|
|
"""
|
2007-09-03 04:04:44 +08:00
|
|
|
SQLite3 backend for django.
|
|
|
|
|
|
|
|
Python 2.3 and 2.4 require pysqlite2 (http://pysqlite.org/).
|
|
|
|
|
|
|
|
Python 2.5 and later use the sqlite3 module in the standard library.
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
|
2007-08-20 10:20:33 +08:00
|
|
|
from django.db.backends import BaseDatabaseWrapper, BaseDatabaseFeatures, BaseDatabaseOperations, util
|
2006-05-27 02:58:46 +08:00
|
|
|
try:
|
2006-09-25 09:53:34 +08:00
|
|
|
try:
|
|
|
|
from sqlite3 import dbapi2 as Database
|
|
|
|
except ImportError:
|
|
|
|
from pysqlite2 import dbapi2 as Database
|
2006-05-27 02:58:46 +08:00
|
|
|
except ImportError, e:
|
2006-09-25 09:53:34 +08:00
|
|
|
import sys
|
2006-05-27 02:58:46 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2006-09-25 09:53:34 +08:00
|
|
|
if sys.version_info < (2, 5, 0):
|
|
|
|
module = 'pysqlite2'
|
|
|
|
else:
|
|
|
|
module = 'sqlite3'
|
|
|
|
raise ImproperlyConfigured, "Error loading %s module: %s" % (module, e)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2007-05-21 09:29:58 +08:00
|
|
|
try:
|
|
|
|
import decimal
|
|
|
|
except ImportError:
|
|
|
|
from django.utils import _decimal as decimal # for Python 2.3
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
DatabaseError = Database.DatabaseError
|
2007-04-25 18:18:56 +08:00
|
|
|
IntegrityError = Database.IntegrityError
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
Database.register_converter("bool", lambda s: str(s) == '1')
|
|
|
|
Database.register_converter("time", util.typecast_time)
|
|
|
|
Database.register_converter("date", util.typecast_date)
|
|
|
|
Database.register_converter("datetime", util.typecast_timestamp)
|
2006-05-06 11:27:49 +08:00
|
|
|
Database.register_converter("timestamp", util.typecast_timestamp)
|
|
|
|
Database.register_converter("TIMESTAMP", util.typecast_timestamp)
|
2007-05-21 09:29:58 +08:00
|
|
|
Database.register_converter("decimal", util.typecast_decimal)
|
|
|
|
Database.register_adapter(decimal.Decimal, util.rev_typecast_decimal)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2007-08-20 10:20:33 +08:00
|
|
|
class DatabaseFeatures(BaseDatabaseFeatures):
|
|
|
|
supports_constraints = False
|
|
|
|
|
2007-08-20 06:29:57 +08:00
|
|
|
class DatabaseOperations(BaseDatabaseOperations):
|
2007-08-20 06:40:06 +08:00
|
|
|
def date_extract_sql(self, lookup_type, field_name):
|
|
|
|
# sqlite doesn't support extract, so we fake it with the user-defined
|
2007-08-20 06:47:43 +08:00
|
|
|
# function django_extract that's registered in connect().
|
2007-08-20 06:40:06 +08:00
|
|
|
return 'django_extract("%s", %s)' % (lookup_type.lower(), field_name)
|
2007-08-20 06:29:57 +08:00
|
|
|
|
2007-08-20 06:47:43 +08:00
|
|
|
def date_trunc_sql(self, lookup_type, field_name):
|
|
|
|
# sqlite doesn't support DATE_TRUNC, so we fake it with a user-defined
|
|
|
|
# function django_date_trunc that's registered in connect().
|
|
|
|
return 'django_date_trunc("%s", %s)' % (lookup_type.lower(), field_name)
|
|
|
|
|
2007-08-20 07:07:34 +08:00
|
|
|
def drop_foreignkey_sql(self):
|
|
|
|
return ""
|
|
|
|
|
2007-08-20 07:59:06 +08:00
|
|
|
def pk_default_value(self):
|
|
|
|
return 'NULL'
|
|
|
|
|
2007-08-20 09:03:33 +08:00
|
|
|
def quote_name(self, name):
|
|
|
|
if name.startswith('"') and name.endswith('"'):
|
|
|
|
return name # Quoting once is enough.
|
|
|
|
return '"%s"' % name
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def no_limit_value(self):
|
|
|
|
return -1
|
|
|
|
|
2007-08-20 08:15:53 +08:00
|
|
|
def sql_flush(self, style, tables, sequences):
|
|
|
|
# NB: The generated SQL below is specific to SQLite
|
|
|
|
# Note: The DELETE FROM... SQL generated below works for SQLite databases
|
|
|
|
# because constraints don't exist
|
|
|
|
sql = ['%s %s %s;' % \
|
|
|
|
(style.SQL_KEYWORD('DELETE'),
|
|
|
|
style.SQL_KEYWORD('FROM'),
|
2007-08-20 09:03:33 +08:00
|
|
|
style.SQL_FIELD(self.quote_name(table))
|
2007-08-20 08:15:53 +08:00
|
|
|
) for table in tables]
|
|
|
|
# Note: No requirement for reset of auto-incremented indices (cf. other
|
|
|
|
# sql_flush() implementations). Just return SQL at this point
|
|
|
|
return sql
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper):
|
2007-08-20 10:20:33 +08:00
|
|
|
features = DatabaseFeatures()
|
2007-08-20 06:29:57 +08:00
|
|
|
ops = DatabaseOperations()
|
|
|
|
|
2007-08-20 11:26:55 +08:00
|
|
|
# SQLite requires LIKE statements to include an ESCAPE clause if the value
|
|
|
|
# being escaped has a percent or underscore in it.
|
|
|
|
# See http://www.sqlite.org/lang_expr.html for an explanation.
|
|
|
|
operators = {
|
|
|
|
'exact': '= %s',
|
|
|
|
'iexact': "LIKE %s ESCAPE '\\'",
|
|
|
|
'contains': "LIKE %s ESCAPE '\\'",
|
|
|
|
'icontains': "LIKE %s ESCAPE '\\'",
|
|
|
|
'regex': 'REGEXP %s',
|
|
|
|
'iregex': "REGEXP '(?i)' || %s",
|
|
|
|
'gt': '> %s',
|
|
|
|
'gte': '>= %s',
|
|
|
|
'lt': '< %s',
|
|
|
|
'lte': '<= %s',
|
|
|
|
'startswith': "LIKE %s ESCAPE '\\'",
|
|
|
|
'endswith': "LIKE %s ESCAPE '\\'",
|
|
|
|
'istartswith': "LIKE %s ESCAPE '\\'",
|
|
|
|
'iendswith': "LIKE %s ESCAPE '\\'",
|
|
|
|
}
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
def _cursor(self, settings):
|
2006-05-02 09:31:56 +08:00
|
|
|
if self.connection is None:
|
2006-11-07 13:17:38 +08:00
|
|
|
kwargs = {
|
|
|
|
'database': settings.DATABASE_NAME,
|
|
|
|
'detect_types': Database.PARSE_DECLTYPES | Database.PARSE_COLNAMES,
|
|
|
|
}
|
|
|
|
kwargs.update(self.options)
|
|
|
|
self.connection = Database.connect(**kwargs)
|
2007-06-28 02:58:10 +08:00
|
|
|
# Register extract, date_trunc, and regexp functions.
|
2006-05-02 09:31:56 +08:00
|
|
|
self.connection.create_function("django_extract", 2, _sqlite_extract)
|
|
|
|
self.connection.create_function("django_date_trunc", 2, _sqlite_date_trunc)
|
2007-06-28 02:58:10 +08:00
|
|
|
self.connection.create_function("regexp", 2, _sqlite_regexp)
|
2007-08-20 05:30:57 +08:00
|
|
|
return self.connection.cursor(factory=SQLiteCursorWrapper)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def close(self):
|
2006-09-05 21:32:08 +08:00
|
|
|
from django.conf import settings
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
# If database is in memory, closing the connection destroys the
|
2007-08-20 05:30:57 +08:00
|
|
|
# database. To prevent accidental data loss, ignore close requests on
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
# an in-memory db.
|
2007-08-20 05:30:57 +08:00
|
|
|
if settings.DATABASE_NAME != ":memory:":
|
|
|
|
BaseDatabaseWrapper.close(self)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
class SQLiteCursorWrapper(Database.Cursor):
|
|
|
|
"""
|
|
|
|
Django uses "format" style placeholders, but pysqlite2 uses "qmark" style.
|
|
|
|
This fixes it -- but note that if you want to use a literal "%s" in a query,
|
|
|
|
you'll need to use "%%s".
|
|
|
|
"""
|
|
|
|
def execute(self, query, params=()):
|
|
|
|
query = self.convert_query(query, len(params))
|
|
|
|
return Database.Cursor.execute(self, query, params)
|
|
|
|
|
|
|
|
def executemany(self, query, param_list):
|
2007-09-15 05:32:25 +08:00
|
|
|
try:
|
|
|
|
query = self.convert_query(query, len(param_list[0]))
|
|
|
|
return Database.Cursor.executemany(self, query, param_list)
|
|
|
|
except (IndexError,TypeError):
|
|
|
|
# No parameter list provided
|
|
|
|
return None
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def convert_query(self, query, num_params):
|
|
|
|
return query % tuple("?" * num_params)
|
|
|
|
|
|
|
|
def _sqlite_extract(lookup_type, dt):
|
|
|
|
try:
|
|
|
|
dt = util.typecast_timestamp(dt)
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
return None
|
|
|
|
return str(getattr(dt, lookup_type))
|
|
|
|
|
|
|
|
def _sqlite_date_trunc(lookup_type, dt):
|
|
|
|
try:
|
|
|
|
dt = util.typecast_timestamp(dt)
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
return None
|
|
|
|
if lookup_type == 'year':
|
|
|
|
return "%i-01-01 00:00:00" % dt.year
|
|
|
|
elif lookup_type == 'month':
|
|
|
|
return "%i-%02i-01 00:00:00" % (dt.year, dt.month)
|
|
|
|
elif lookup_type == 'day':
|
|
|
|
return "%i-%02i-%02i 00:00:00" % (dt.year, dt.month, dt.day)
|
|
|
|
|
2007-06-28 02:58:10 +08:00
|
|
|
def _sqlite_regexp(re_pattern, re_string):
|
|
|
|
import re
|
|
|
|
try:
|
|
|
|
return bool(re.search(re_pattern, re_string))
|
|
|
|
except:
|
|
|
|
return False
|