模块 org.redkale

接口 DataResultSet

  • 所有超级接口:
    DataResultSetRow
    所有已知实现类:
    DataJdbcSource.DataJdbcResultSet

    public interface DataResultSet
    extends DataResultSetRow
    java.sql.ResultSet的简化版。

    字段类型支持:
    1、boolean/Boolean
    2、byte/Byte
    3、short/Short
    4、char/Character
    5、int/Integer/AtomicInteger
    6、long/Long/AtomicLong/LongAdder
    7、float/Float
    8、double/Double
    9、java.math.BigInteger
    10、java.math.BigDecimal
    11、String
    12、byte[]
    13、java.time.LocalDate/java.sql.Date/java.util.Date
    14、java.time.LocalTime/java.sql.Time
    15、java.time.LocalDateTime/java.sql.Timestamp
    16、JavaBean/其他可JSON化类型

    详情见: https://redkale.org

    从以下版本开始:
    2.5.0
    作者:
    zhangjx
    • 方法详细资料

      • next

        boolean next()
      • close

        void close()
      • formatColumnValue

        static Serializable formatColumnValue​(Class type,
                                              Object o)
        将对象转化成另一个类型对象
        参数:
        type - 类型
        o - 数据库字段值
        返回:
        转换后对象
      • formatColumnValue

        static Serializable formatColumnValue​(Class type,
                                              Type genericType,
                                              Object o)
        将对象转化成另一个类型对象
        参数:
        type - 类型
        genericType - 泛型类型
        o - 数据库字段值
        返回:
        转换后对象