/django/contrib/gis/db/backends/mysql/base.py
Python | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | f8ea963974a884eeecaa020ab147d18c MD5 | raw file
Possible License(s): BSD-3-Clause
- from django.db.backends.mysql.base import *
- from django.db.backends.mysql.base import DatabaseWrapper as MySQLDatabaseWrapper
- from django.contrib.gis.db.backends.mysql.creation import MySQLCreation
- from django.contrib.gis.db.backends.mysql.introspection import MySQLIntrospection
- from django.contrib.gis.db.backends.mysql.operations import MySQLOperations
- class DatabaseWrapper(MySQLDatabaseWrapper):
- def __init__(self, *args, **kwargs):
- super(DatabaseWrapper, self).__init__(*args, **kwargs)
- self.creation = MySQLCreation(self)
- self.ops = MySQLOperations()
- self.introspection = MySQLIntrospection(self)