Hibernate利用JDBC批操作

Posted lusufei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate利用JDBC批操作相关的知识,希望对你有一定的参考价值。

@org.junit.Test
    public void testBatch() {
        session.doWork(new Work() {
            
            @Override
            public void execute(Connection connection) throws SQLException {
                // TODO Auto-generated method stub
                String sql = "insert into manager (MGR_NAME) values (?)";
                PreparedStatement pStatement = (PreparedStatement) connection.prepareStatement(sql);
                
                for(int i=0;i<10000;i++) {
                    pStatement.setString(1,"xiaoyan"+i);
                    pStatement.addBatch();
                    if(i%1000==0) {
                        pStatement.executeBatch();
                    }
                }
                
                pStatement.executeBatch();
                pStatement.close();
            }
        });
    }

 

以上是关于Hibernate利用JDBC批操作的主要内容,如果未能解决你的问题,请参考以下文章

hibernate-笔记

搭建hibernate环境

编写hibernate 操作数据库的dao层简单代码

Hibernate-细细道来

Hibernate

JDBC与Hibernate的区别