好象是指结果集是否支持前滚,
set.next()是下滚,set.previor()是前滚,
这要看数据库的java包是否支持,db2的就不行

解决方案 »

  1.   

    我说的好象不太对,API上是这样写的
    TYPE_SCROLL_INSENSITIVE :The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes made by others.
    TYPE_SCROLL_SENSITIVE :The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes made by others.
      

  2.   

    是否支持记录集的滚动。默认是只能一条条的向前滚。加过是ResultSet.TYPE_SCROLL_INSENSITIVE则支持rs.absolute()以及rs.last()和rs.first()等滚动方式。