|
29
|
1 |
from django.db.backends.oracle.base import * |
|
|
2 |
from django.db.backends.oracle.base import DatabaseWrapper as OracleDatabaseWrapper |
|
|
3 |
from django.contrib.gis.db.backends.oracle.creation import OracleCreation |
|
|
4 |
from django.contrib.gis.db.backends.oracle.introspection import OracleIntrospection |
|
|
5 |
from django.contrib.gis.db.backends.oracle.operations import OracleOperations |
|
|
6 |
|
|
|
7 |
class DatabaseWrapper(OracleDatabaseWrapper): |
|
|
8 |
def __init__(self, *args, **kwargs): |
|
|
9 |
super(DatabaseWrapper, self).__init__(*args, **kwargs) |
|
|
10 |
self.ops = OracleOperations(self) |
|
|
11 |
self.creation = OracleCreation(self) |
|
|
12 |
self.introspection = OracleIntrospection(self) |