`
nishijia
  • 浏览: 53110 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

defaultBatchValue 为何没有效果

    博客分类:
  • JDBC
阅读更多

我在我的oracle 属性配置文件中 写入 defaultRowPrefetch=50,defaultBatchValue=25,发现在connection 中的

defaultRowPrefetch属性改为50,而defaultBatch 怎么都是1,为什么没有效果呢

 

我的配置文件:

driver = oracle.jdbc.driver.OracleDriver
url = jdbc:oracle:thin:@localhost:1522:DB
user = username
password = pwd
defaultRowPrefetch=50
defaultBatchValue=25

 我的代码:

Class.forName(prop.getProperty("driver"));
Connection conn;
try {
conn = DriverManager.getConnection(prop.getProperty("url"), prop);
conn.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
conn.setAutoCommit(false);
//((OracleConnection)conn).setDefaultExecuteBatch(20); 
} catch (SQLException e) {
	e.printStackTrace();
}
 

后来我网上找了下  上面代码中的注释是我后来加上的  这样才能改变所得到的conn的defaultBatch值,为什么配置文件中的defaultBatchValue  没有什么效果 该如何解决呢

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics