java語言MySQL批處理,javamysql批處理

來源:互聯網
上載者:User

java語言MySQL批處理,javamysql批處理

本質來講就是使用Statement和PreStatement的addBatch()方法

代碼

import java.sql.*;public class GetConnection{public static void main(String[] args){Access2Database adb=new Access2Database();Connection conn=adb.getConn();//transaction dealingPreparedStatement pstam=null;try{conn.setAutoCommit(false);String sql="insert into student(name,major,score) values(?,?,?);";pstam=conn.prepareStatement(sql);pstam.setString(1, "f");pstam.setString(2,"History");pstam.setInt(3, 67);pstam.addBatch();pstam.setString(1, "h");pstam.setString(2, "Biology");pstam.setInt(3, 85);pstam.addBatch();pstam.executeBatch();conn.commit();}catch(SQLException e){try {conn.rollback();} catch (SQLException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}e.printStackTrace();}finally{try {conn.setAutoCommit(true);} catch (SQLException e) {// TODO Auto-generated catch blocke.printStackTrace();}}//release the resource of the programtry{pstam.close();conn.close();}catch(SQLException e){e.printStackTrace();}}}

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.