2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
PostgreSQL database backend for Django.
|
|
|
|
|
|
|
|
Requires psycopg 1: http://initd.org/projects/psycopg1
|
|
|
|
"""
|
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
from django.db.backends import *
|
|
|
|
from django.db.backends.postgresql.client import DatabaseClient
|
|
|
|
from django.db.backends.postgresql.creation import DatabaseCreation
|
|
|
|
from django.db.backends.postgresql.introspection import DatabaseIntrospection
|
2007-08-20 09:26:46 +08:00
|
|
|
from django.db.backends.postgresql.operations import DatabaseOperations
|
2008-08-12 14:31:29 +08:00
|
|
|
from django.db.backends.postgresql.version import get_version
|
2008-08-11 20:11:25 +08:00
|
|
|
from django.utils.encoding import smart_str, smart_unicode
|
|
|
|
|
2006-05-27 02:58:46 +08:00
|
|
|
try:
|
|
|
|
import psycopg as Database
|
|
|
|
except ImportError, e:
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2007-08-20 11:32:06 +08:00
|
|
|
raise ImproperlyConfigured("Error loading psycopg module: %s" % e)
|
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
|
|
|
|
2006-12-27 13:14:02 +08:00
|
|
|
class UnicodeCursorWrapper(object):
|
|
|
|
"""
|
|
|
|
A thin wrapper around psycopg cursors that allows them to accept Unicode
|
|
|
|
strings as params.
|
|
|
|
|
|
|
|
This is necessary because psycopg doesn't apply any DB quoting to
|
|
|
|
parameters that are Unicode strings. If a param is Unicode, this will
|
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
|
|
|
convert it to a bytestring using database client's encoding before passing
|
|
|
|
it to psycopg.
|
|
|
|
|
|
|
|
All results retrieved from the database are converted into Unicode strings
|
|
|
|
before being returned to the caller.
|
2006-12-27 13:14:02 +08:00
|
|
|
"""
|
|
|
|
def __init__(self, cursor, charset):
|
|
|
|
self.cursor = cursor
|
|
|
|
self.charset = charset
|
|
|
|
|
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
|
|
|
def format_params(self, params):
|
|
|
|
if isinstance(params, dict):
|
|
|
|
result = {}
|
|
|
|
charset = self.charset
|
|
|
|
for key, value in params.items():
|
|
|
|
result[smart_str(key, charset)] = smart_str(value, charset)
|
|
|
|
return result
|
|
|
|
else:
|
|
|
|
return tuple([smart_str(p, self.charset, True) for p in params])
|
|
|
|
|
2006-12-27 13:14:02 +08:00
|
|
|
def execute(self, sql, params=()):
|
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
|
|
|
return self.cursor.execute(smart_str(sql, self.charset), self.format_params(params))
|
2006-12-27 13:14:02 +08:00
|
|
|
|
|
|
|
def executemany(self, sql, param_list):
|
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
|
|
|
new_param_list = [self.format_params(params) for params in param_list]
|
2006-12-27 13:14:02 +08:00
|
|
|
return self.cursor.executemany(sql, new_param_list)
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
2007-04-26 21:30:48 +08:00
|
|
|
if attr in self.__dict__:
|
2006-12-27 13:14:02 +08:00
|
|
|
return self.__dict__[attr]
|
|
|
|
else:
|
|
|
|
return getattr(self.cursor, attr)
|
|
|
|
|
2008-03-17 22:15:15 +08:00
|
|
|
def __iter__(self):
|
|
|
|
return iter(self.cursor)
|
|
|
|
|
2008-08-12 13:34:56 +08:00
|
|
|
class DatabaseFeatures(BaseDatabaseFeatures):
|
|
|
|
uses_savepoints = True
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper):
|
2007-08-20 11:26:55 +08:00
|
|
|
operators = {
|
|
|
|
'exact': '= %s',
|
2008-08-25 20:56:06 +08:00
|
|
|
'iexact': '= UPPER(%s)',
|
2007-08-20 11:26:55 +08:00
|
|
|
'contains': 'LIKE %s',
|
2008-08-25 20:56:06 +08:00
|
|
|
'icontains': 'LIKE UPPER(%s)',
|
2007-08-20 11:26:55 +08:00
|
|
|
'regex': '~ %s',
|
|
|
|
'iregex': '~* %s',
|
|
|
|
'gt': '> %s',
|
|
|
|
'gte': '>= %s',
|
|
|
|
'lt': '< %s',
|
|
|
|
'lte': '<= %s',
|
|
|
|
'startswith': 'LIKE %s',
|
|
|
|
'endswith': 'LIKE %s',
|
2008-08-25 20:56:06 +08:00
|
|
|
'istartswith': 'LIKE UPPER(%s)',
|
|
|
|
'iendswith': 'LIKE UPPER(%s)',
|
2007-08-20 11:26:55 +08:00
|
|
|
}
|
2007-08-20 06:29:57 +08:00
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DatabaseWrapper, self).__init__(*args, **kwargs)
|
2008-08-12 13:34:56 +08:00
|
|
|
|
|
|
|
self.features = DatabaseFeatures()
|
2008-08-11 20:11:25 +08:00
|
|
|
self.ops = DatabaseOperations()
|
|
|
|
self.client = DatabaseClient()
|
|
|
|
self.creation = DatabaseCreation(self)
|
|
|
|
self.introspection = DatabaseIntrospection(self)
|
|
|
|
self.validation = BaseDatabaseValidation()
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
def _cursor(self, settings):
|
2007-02-26 00:18:46 +08:00
|
|
|
set_tz = False
|
2006-05-02 09:31:56 +08:00
|
|
|
if self.connection is None:
|
2007-02-26 00:18:46 +08:00
|
|
|
set_tz = True
|
2006-05-02 09:31:56 +08:00
|
|
|
if settings.DATABASE_NAME == '':
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2007-08-20 11:32:06 +08:00
|
|
|
raise ImproperlyConfigured("You need to specify DATABASE_NAME in your Django settings file.")
|
2006-05-02 09:31:56 +08:00
|
|
|
conn_string = "dbname=%s" % settings.DATABASE_NAME
|
|
|
|
if settings.DATABASE_USER:
|
|
|
|
conn_string = "user=%s %s" % (settings.DATABASE_USER, conn_string)
|
|
|
|
if settings.DATABASE_PASSWORD:
|
|
|
|
conn_string += " password='%s'" % settings.DATABASE_PASSWORD
|
|
|
|
if settings.DATABASE_HOST:
|
|
|
|
conn_string += " host=%s" % settings.DATABASE_HOST
|
|
|
|
if settings.DATABASE_PORT:
|
|
|
|
conn_string += " port=%s" % settings.DATABASE_PORT
|
2006-11-07 13:17:38 +08:00
|
|
|
self.connection = Database.connect(conn_string, **self.options)
|
2006-05-02 09:31:56 +08:00
|
|
|
self.connection.set_isolation_level(1) # make transactions transparent to all cursors
|
|
|
|
cursor = self.connection.cursor()
|
2007-02-26 00:18:46 +08:00
|
|
|
if set_tz:
|
|
|
|
cursor.execute("SET TIME ZONE %s", [settings.TIME_ZONE])
|
2008-08-12 14:31:29 +08:00
|
|
|
if not hasattr(self, '_version'):
|
2008-08-28 14:49:00 +08:00
|
|
|
self.__class__._version = get_version(cursor)
|
|
|
|
if self._version < (8, 0):
|
|
|
|
# No savepoint support for earlier version of PostgreSQL.
|
|
|
|
self.features.uses_savepoints = False
|
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
|
|
|
cursor.execute("SET client_encoding to 'UNICODE'")
|
|
|
|
cursor = UnicodeCursorWrapper(cursor, 'utf-8')
|
2006-05-02 09:31:56 +08:00
|
|
|
return cursor
|
|
|
|
|
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
|
|
|
def typecast_string(s):
|
|
|
|
"""
|
|
|
|
Cast all returned strings to unicode strings.
|
|
|
|
"""
|
2007-08-11 13:23:19 +08:00
|
|
|
if not s and not isinstance(s, str):
|
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
|
|
|
return s
|
|
|
|
return smart_unicode(s)
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
# Register these custom typecasts, because Django expects dates/times to be
|
|
|
|
# in Python's native (standard-library) datetime/time format, whereas psycopg
|
|
|
|
# use mx.DateTime by default.
|
|
|
|
try:
|
|
|
|
Database.register_type(Database.new_type((1082,), "DATE", util.typecast_date))
|
|
|
|
except AttributeError:
|
2007-08-20 11:32:06 +08:00
|
|
|
raise Exception("You appear to be using psycopg version 2. Set your DATABASE_ENGINE to 'postgresql_psycopg2' instead of 'postgresql'.")
|
2006-05-02 09:31:56 +08:00
|
|
|
Database.register_type(Database.new_type((1083,1266), "TIME", util.typecast_time))
|
|
|
|
Database.register_type(Database.new_type((1114,1184), "TIMESTAMP", util.typecast_timestamp))
|
|
|
|
Database.register_type(Database.new_type((16,), "BOOLEAN", util.typecast_boolean))
|
2007-05-21 09:29:58 +08:00
|
|
|
Database.register_type(Database.new_type((1700,), "NUMERIC", util.typecast_decimal))
|
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
|
|
|
Database.register_type(Database.new_type(Database.types[1043].values, 'STRING', typecast_string))
|