MLE SQL Driver(mle-js-oracledb-common)
    Preparing search index...

    Interface IDbObjectAttributes

    Interface for representing a DbObject attribute.

    Oracle 23.3

    interface IDbObjectAttributes {
        type: number;
        typeClass?: IDbObjectClass;
        typeName: string;
    }
    Index

    Properties

    type: number

    the value of one of the Oracle Database Type Constants, such as 2010 for oracledb.DB_TYPE_NUMBER and 2023 for oracledb.DB_TYPE_OBJECT.

    typeClass?: IDbObjectClass

    set if the value of type is a DbObject. It is the DbObject class for the attribute.

    typeName: string

    a string corresponding to the type, such as “VARCHAR2” or “NUMBER”. When the attribute is a DbObject, it will contain the name of the object.