Class AbstractJDBCDatabaseInterface.JDIQueryResponse

    • Method Detail

      • getResultID

        public int getResultID()
        Description copied from interface: QueryResponse
        Returns a number that identifies this query within the set of queries executed on the connection. This is used for identifying this query in subsequent operations.
        Specified by:
        getResultID in interface QueryResponse
      • getQueryTimeMillis

        public int getQueryTimeMillis()
        Description copied from interface: QueryResponse
        The time, in milliseconds, that the query took to execute.
        Specified by:
        getQueryTimeMillis in interface QueryResponse
      • getRowCount

        public int getRowCount()
        Description copied from interface: QueryResponse
        The total number of rows in the query result. This is known ahead of time, even if no data in the query has been accessed.
        Specified by:
        getRowCount in interface QueryResponse
      • getColumnDescription

        public ColumnDescription getColumnDescription​(int n)
        Description copied from interface: QueryResponse
        The ColumnDescription object that describes column 'n' in the result. 0 is the first column, 1 is the second column, etc.
        Specified by:
        getColumnDescription in interface QueryResponse
      • getWarnings

        public java.lang.String getWarnings()
        Description copied from interface: QueryResponse
        Returns any warnings about the query. If there were no warnings then this can return 'null'.
        Specified by:
        getWarnings in interface QueryResponse