其他分享
首页 > 其他分享> > JDBC的createStatement()方法

JDBC的createStatement()方法

作者:互联网

Connection的createStatement()方法:

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: 结果集是可更新的,对结果集的更新可以反向影响数据库。

 

 

 

 

 、、、

 

标签:JDBC,createStatement,结果,TYPE,数据库,ResultSet,滚动,方法
来源: https://www.cnblogs.com/0099-ymsml/p/16219313.html