类 AbstractResultsetRow

    • 字段详细资料

      • metadata

        protected ColumnDefinition metadata
        The metadata of the fields of this result set.
      • wasNull

        protected boolean wasNull
        Did the previous value retrieval find a NULL?
    • 构造器详细资料

      • AbstractResultsetRow

        protected AbstractResultsetRow​(ExceptionInterceptor exceptionInterceptor)
    • 方法详细资料

      • getValueFromBytes

        protected <T> T getValueFromBytes​(int columnIndex,
                                          byte[] bytes,
                                          int offset,
                                          int length,
                                          ValueFactory<T> vf)
        Get a value from a byte array. The byte array is interpreted by the ValueDecoder which uses the value factory create the return value.
        类型参数:
        T - value type
        参数:
        columnIndex - The (internal) index of the column
        bytes - byte array
        offset - offset into byte array
        length - length of value in byte array
        vf - value factory
        返回:
        value
      • wasNull

        public boolean wasNull()
        从接口复制的说明: Row
        Was the last value retrieved a NULL value?
        指定者:
        wasNull 在接口中 Row
        返回:
        true if the last retrieved value was NULL.