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

    Interface IStatementInfo

    Interface for the result of getStatementInfo().

    interface IStatementInfo {
        bindNames: string[];
        metaData?: IMetaData[];
        statementType: number;
    }
    Index

    Properties

    bindNames: string[]

    Array of strings corresponding to the unique names of the bind variables used in the SQL statement.

    metaData?: IMetaData[]

    Array containing properties equivalent to those in extendedMetaData on execute(). This property exists only for queries.

    statementType: number

    Integer corresponding to one of the mle-js-oracledb SQL Statement Type Constants, e.g. STMT_TYPE_SELECT.