在java.sql.ResultSet.java中:结果集可滚动; 
    /**
     * The constant indicating the type for a <code>ResultSet</code> object
     * that is scrollable and generally sensitive to changes made by others.
     * @since 1.2
     */
    int TYPE_SCROLL_SENSITIVE = 1005;结果集可更新    /**
     * The constant indicating the concurrency mode for a
     * <code>ResultSet</code> object that may be updated.
     * @since 1.2
     */
    int CONCUR_UPDATABLE = 1008;