You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.py 516B

12345678910111213141516
  1. from django.db.backends.oracle.base import (
  2. DatabaseWrapper as OracleDatabaseWrapper,
  3. )
  4. from .features import DatabaseFeatures
  5. from .introspection import OracleIntrospection
  6. from .operations import OracleOperations
  7. from .schema import OracleGISSchemaEditor
  8. class DatabaseWrapper(OracleDatabaseWrapper):
  9. SchemaEditorClass = OracleGISSchemaEditor
  10. # Classes instantiated in __init__().
  11. features_class = DatabaseFeatures
  12. introspection_class = OracleIntrospection
  13. ops_class = OracleOperations