Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException
第一个参数 resultSetType: ResultSet.TYPE_FORWARD_ONLY: 不滚动结果集; ResultSet.TYPE_SCROLL_INSENSITIVE: 滚动结果集,但结果集数据不会再跟随数据库而变化;
ResultSet.TYPE_SCROLL_SENSITIVE: 滚动结果集,但结果集数据不会再跟随数据库而变化; 第二个参数 resultSetConcurrency: ResultSet.CONCUR_READ_ONLY: 结果集是只读的,不能通过修改结果集而反向影响数据库;
ResultSet.CONCUR_UPDATABLE: 结果集是可更新的,对结果集的更新可以反向影响数据库。
、、、