Add Django-1.2.1
[frozenviper.git] / Django-1.2.1 / django / contrib / gis / db / backends / mysql / base.py
blob7f0fc4815b7f8d22545f08ecb0cefbed5bbcb6e6
1 from django.db.backends.mysql.base import *
2 from django.db.backends.mysql.base import DatabaseWrapper as MySQLDatabaseWrapper
3 from django.contrib.gis.db.backends.mysql.creation import MySQLCreation
4 from django.contrib.gis.db.backends.mysql.introspection import MySQLIntrospection
5 from django.contrib.gis.db.backends.mysql.operations import MySQLOperations
7 class DatabaseWrapper(MySQLDatabaseWrapper):
9 def __init__(self, *args, **kwargs):
10 super(DatabaseWrapper, self).__init__(*args, **kwargs)
11 self.creation = MySQLCreation(self)
12 self.ops = MySQLOperations()
13 self.introspection = MySQLIntrospection(self)