2015-01-28 20:35:27 +08:00
|
|
|
from django.db.backends.oracle.base import \
|
|
|
|
DatabaseWrapper as OracleDatabaseWrapper
|
2009-12-22 23:18:51 +08:00
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
from .features import DatabaseFeatures
|
|
|
|
from .introspection import OracleIntrospection
|
|
|
|
from .operations import OracleOperations
|
|
|
|
from .schema import OracleGISSchemaEditor
|
2014-08-18 01:06:25 +08:00
|
|
|
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
class DatabaseWrapper(OracleDatabaseWrapper):
|
2014-09-26 01:59:03 +08:00
|
|
|
SchemaEditorClass = OracleGISSchemaEditor
|
2016-09-09 04:33:36 +08:00
|
|
|
# Classes instantiated in __init__().
|
|
|
|
features_class = DatabaseFeatures
|
|
|
|
introspection_class = OracleIntrospection
|
|
|
|
ops_class = OracleOperations
|