使用JDBC插入大量数据的性能测试

发表于:2011-01-04来源:作者:点击数: 标签:
使用JDBC插入大量数据的 性能测试 软件测试 使用jdbc向 数据库 插入100000条记录,分别使用statement,PreparedStatement,及PreparedStatement+批处理3种方式进行测试: 1、使用statement插入100000条记录 public void exec(Connection conn){ try { Long b

  使用JDBC插入大量数据的性能测试    软件测试

  使用jdbc向数据库插入100000条记录,分别使用statement,PreparedStatement,及PreparedStatement+批处理3种方式进行测试:

  1、使用statement插入100000条记录

public void exec(Connection conn){

 try {

  Long beginTime = System.currentTimeMillis();

  conn.setAutoCommit(false);//设置手动提交

  Statement st = conn.createStatement();

  for(int i=0;i<100000;i++){

   String sql="insert into t1(id) values ("+i+")";

   st.executeUpdate(sql);

  }

  Long endTime = System.currentTimeMillis();

  System.out.println("st:"+(endTime-beginTime)/1000+"秒");//计算时间

  st.close();

  conn.close();

 } catch (SQLException e) {

 // TODO Auto-generated catch block

 e.printStackTrace();

 }

}

  2、使用PreparedStatement对象

public void exec2(Connection conn){

 try {

  Long beginTime = System.currentTimeMillis();

  conn.setAutoCommit(false);//手动提交

  PreparedStatement pst = conn.prepareStatement("insert into t1(id) values (?)");

  for(int i=0;i<100000;i++){

   pst.setInt(1, i);

   pst.execute();

  }

  conn.commit();

  Long endTime = System.currentTimeMillis();

  System.out.println("pst:"+(endTime-beginTime)/1000+"秒");//计算时间

原文转自:http://www.ltesting.net