欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ibatis的批处理

程序员文章站 2022-05-23 13:01:30
...

利用com.ibatis.sqlmap.client.SqlMapClient类的对象的两个方法,示例如下:

public void batchUpdateXianxin(List<Xianxin> xianxins) throws SQLException {
		
		sqlMapper.startBatch();
		
		//…execute statements in between	

		System.out.println(sqlMapper.executeBatch());
	}
相关标签: iBATIS