类 SqlUpdateResult

    • 方法详细资料

      • hasData

        public boolean hasData()
        从接口复制的说明: FetchResult
        Does this result have data? This indicates that the result was produced from a data-returning query. It does not indicate whether there are more than 0 rows in the result.
        指定者:
        hasData 在接口中 FetchResult<Row>
        返回:
        true if has data
      • nextResult

        public boolean nextResult()
        从接口复制的说明: SqlResult
        Move to the next result. This method has no effect after returning false for the first time.
        指定者:
        nextResult 在接口中 SqlResult
        返回:
        was there a next result that we moved to?
      • fetchAll

        public List<Row> fetchAll()
        从接口复制的说明: FetchResult
        Create a list of all elements in the result forcing internal buffering.
        指定者:
        fetchAll 在接口中 FetchResult<Row>
        返回:
        list of result elements
      • getColumnCount

        public int getColumnCount()
        从接口复制的说明: RowResult
        Count of columns.
        指定者:
        getColumnCount 在接口中 RowResult
        返回:
        count
      • count

        public long count()
        从接口复制的说明: FetchResult
        How many items are in this result? This method forces internal buffering of the entire result.
        指定者:
        count 在接口中 FetchResult<Row>
        返回:
        number of elements in result