2005-10-15 09:37:16 +08:00
|
|
|
"""
|
|
|
|
ADO MSSQL database backend for Django.
|
|
|
|
|
|
|
|
Requires adodbapi 2.0.1: http://adodbapi.sourceforge.net/
|
|
|
|
"""
|
|
|
|
|
2007-08-20 06:29:57 +08:00
|
|
|
from django.db.backends import BaseDatabaseWrapper, BaseDatabaseOperations, util
|
2006-05-27 02:58:46 +08:00
|
|
|
try:
|
|
|
|
import adodbapi as Database
|
|
|
|
except ImportError, e:
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
raise ImproperlyConfigured, "Error loading adodbapi module: %s" % e
|
2005-10-15 09:37:16 +08:00
|
|
|
import datetime
|
|
|
|
try:
|
|
|
|
import mx
|
|
|
|
except ImportError:
|
|
|
|
mx = None
|
|
|
|
|
|
|
|
DatabaseError = Database.DatabaseError
|
2007-04-25 18:18:56 +08:00
|
|
|
IntegrityError = Database.IntegrityError
|
2005-10-15 09:37:16 +08:00
|
|
|
|
|
|
|
# We need to use a special Cursor class because adodbapi expects question-mark
|
|
|
|
# param style, but Django expects "%s". This cursor converts question marks to
|
|
|
|
# format-string style.
|
|
|
|
class Cursor(Database.Cursor):
|
|
|
|
def executeHelper(self, operation, isStoredProcedureCall, parameters=None):
|
|
|
|
if parameters is not None and "%s" in operation:
|
|
|
|
operation = operation.replace("%s", "?")
|
|
|
|
Database.Cursor.executeHelper(self, operation, isStoredProcedureCall, parameters)
|
|
|
|
|
|
|
|
class Connection(Database.Connection):
|
|
|
|
def cursor(self):
|
|
|
|
return Cursor(self)
|
|
|
|
Database.Connection = Connection
|
|
|
|
|
|
|
|
origCVtoP = Database.convertVariantToPython
|
|
|
|
def variantToPython(variant, adType):
|
|
|
|
if type(variant) == bool and adType == 11:
|
|
|
|
return variant # bool not 1/0
|
|
|
|
res = origCVtoP(variant, adType)
|
|
|
|
if mx is not None and type(res) == mx.DateTime.mxDateTime.DateTimeType:
|
|
|
|
# Convert ms.DateTime objects to Python datetime.datetime objects.
|
|
|
|
tv = list(res.tuple()[:7])
|
|
|
|
tv[-2] = int(tv[-2])
|
|
|
|
return datetime.datetime(*tuple(tv))
|
|
|
|
if type(res) == float and str(res)[-2:] == ".0":
|
|
|
|
return int(res) # If float but int, then int.
|
|
|
|
return res
|
|
|
|
Database.convertVariantToPython = variantToPython
|
|
|
|
|
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):
|
|
|
|
return "DATEPART(%s, %s)" % (lookup_type, 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):
|
|
|
|
if lookup_type == 'year':
|
|
|
|
return "Convert(datetime, Convert(varchar, DATEPART(year, %s)) + '/01/01')" % field_name
|
|
|
|
if lookup_type == 'month':
|
|
|
|
return "Convert(datetime, Convert(varchar, DATEPART(year, %s)) + '/' + Convert(varchar, DATEPART(month, %s)) + '/01')" % (field_name, field_name)
|
|
|
|
if lookup_type == 'day':
|
|
|
|
return "Convert(datetime, Convert(varchar(12), %s))" % field_name
|
|
|
|
|
2007-08-20 07:03:38 +08:00
|
|
|
def deferrable_sql(self):
|
|
|
|
return " DEFERRABLE INITIALLY DEFERRED"
|
|
|
|
|
2007-08-20 07:18:43 +08:00
|
|
|
def last_insert_id(self, cursor, table_name, pk_name):
|
|
|
|
cursor.execute("SELECT %s FROM %s WHERE %s = @@IDENTITY" % (pk_name, table_name, pk_name))
|
|
|
|
return cursor.fetchone()[0]
|
|
|
|
|
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
|
|
|
|
|
2007-08-20 08:04:20 +08:00
|
|
|
def random_function_sql(self):
|
|
|
|
return 'RAND()'
|
|
|
|
|
2007-08-20 08:30:19 +08:00
|
|
|
def tablespace_sql(self, tablespace, inline=False):
|
2007-08-20 09:03:33 +08:00
|
|
|
return "ON %s" % self.quote_name(tablespace)
|
2007-08-20 08:30:19 +08:00
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper):
|
2007-08-20 06:29:57 +08:00
|
|
|
ops = DatabaseOperations()
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
def _cursor(self, settings):
|
2005-10-15 09:37:16 +08:00
|
|
|
if self.connection is None:
|
2006-05-02 09:31:56 +08:00
|
|
|
if settings.DATABASE_NAME == '' or settings.DATABASE_USER == '':
|
2005-10-15 09:37:16 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2007-08-20 05:30:57 +08:00
|
|
|
raise ImproperlyConfigured("You need to specify both DATABASE_NAME and DATABASE_USER in your Django settings file.")
|
2006-05-02 09:31:56 +08:00
|
|
|
if not settings.DATABASE_HOST:
|
|
|
|
settings.DATABASE_HOST = "127.0.0.1"
|
2005-10-15 09:37:16 +08:00
|
|
|
# TODO: Handle DATABASE_PORT.
|
2006-05-02 09:31:56 +08:00
|
|
|
conn_string = "PROVIDER=SQLOLEDB;DATA SOURCE=%s;UID=%s;PWD=%s;DATABASE=%s" % (settings.DATABASE_HOST, settings.DATABASE_USER, settings.DATABASE_PASSWORD, settings.DATABASE_NAME)
|
2005-10-15 09:37:16 +08:00
|
|
|
self.connection = Database.connect(conn_string)
|
2007-08-20 05:30:57 +08:00
|
|
|
return self.connection.cursor()
|
2005-10-15 09:37:16 +08:00
|
|
|
|
2007-06-23 22:16:00 +08:00
|
|
|
allows_group_by_ordinal = True
|
|
|
|
allows_unique_and_pk = True
|
|
|
|
autoindexes_primary_keys = True
|
|
|
|
needs_datetime_string_cast = True
|
|
|
|
needs_upper_for_iops = False
|
2006-05-02 09:31:56 +08:00
|
|
|
supports_constraints = True
|
2007-06-23 22:16:00 +08:00
|
|
|
supports_tablespaces = True
|
|
|
|
uses_case_insensitive_names = False
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2005-10-15 09:37:16 +08:00
|
|
|
OPERATOR_MAPPING = {
|
2005-11-21 10:46:15 +08:00
|
|
|
'exact': '= %s',
|
|
|
|
'iexact': 'LIKE %s',
|
|
|
|
'contains': 'LIKE %s',
|
|
|
|
'icontains': 'LIKE %s',
|
|
|
|
'gt': '> %s',
|
|
|
|
'gte': '>= %s',
|
|
|
|
'lt': '< %s',
|
|
|
|
'lte': '<= %s',
|
|
|
|
'startswith': 'LIKE %s',
|
|
|
|
'endswith': 'LIKE %s',
|
|
|
|
'istartswith': 'LIKE %s',
|
|
|
|
'iendswith': 'LIKE %s',
|
2005-10-15 09:37:16 +08:00
|
|
|
}
|