class documentation

class OracleIntrospection(DatabaseIntrospection):

View In Hierarchy

Undocumented

Method get​_geometry​_type Undocumented
Property data​_types​_reverse Undocumented

Inherited from DatabaseIntrospection:

Method get​_constraints Retrieve any constraints or keys (unique, pk, fk, check, index) across one or more columns.
Method get​_field​_type Hook for a database backend to use the cursor description to match a Django field type to a database column.
Method get​_key​_columns Backends can override this to return a list of: (column_name, referenced_table_name, referenced_column_name) for all key columns in given table.
Method get​_primary​_key​_column Return the name of the primary key column for the given table.
Method get​_relations Return a dictionary of {field_name: (field_name_other_table, other_table)} representing all relationships to the given table.
Method get​_sequences Return a list of introspected sequences for table_name. Each sequence is a dict: {'table': <table_name>, 'column': <column_name>}. An optional 'name' key can be added if the backend supports named sequences.
Method get​_table​_description Return a description of the table with the DB-API cursor.description interface.
Method get​_table​_list Return a list of table and view names in the current database.
Method identifier​_converter Identifier comparison is case insensitive under Oracle.
Class Variable cache​_bust​_counter Undocumented

Inherited from BaseDatabaseIntrospection (via DatabaseIntrospection):

Method __init__ Undocumented
Method django​_table​_names Return a list of all table names that have associated Django models and are in INSTALLED_APPS.
Method get​_migratable​_models Undocumented
Method installed​_models Return a set of all models represented by the provided list of table names.
Method sequence​_list Return a list of information about all DB sequences for all models in all apps.
Method table​_names No summary
Instance Variable connection Undocumented
def get_geometry_type(self, table_name, description):

Undocumented