package test;import java.sql.*;public class BatchUpdate {
  public static void main(String args[]) throws java.sql.SQLException{
    String url = "jdbc:odbc:db1";
    Connection con=null;
    Statement stmt=null;
    ResultSet uprs=null;    try {
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    }
    catch (java.lang.ClassNotFoundException e) {
      System.err.print("ClassNotFoundException: ");
      System.err.println(e.getMessage());
    }    try {      con = DriverManager.getConnection(url, "user", "password");
      System.out.println("OK");
      stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
            ResultSet.CONCUR_UPDATABLE);//      con.setAutoCommit(false);      int[] updateCounts = stmt.executeBatch();
      uprs = stmt.executeQuery("SELECT * FROM COFFEES");
      System.out.println("Table COFFEES after insertion:");      while (uprs.next()) {
                String name = uprs.getString("COF_NAME");
                int id = uprs.getInt("SUP_ID");
                float price = uprs.getFloat("PRICE");
                int sales = uprs.getInt("SALES");
                int total = uprs.getInt("TOTAL");
                System.out.print(name + " " + id + " " + price);
                System.out.println(" " + sales + " " + total);
      }    }
    catch (BatchUpdateException b) {
      System.err.println("SQLException: " + b.getMessage());
      System.err.println("SQLState: " + b.getSQLState());
      System.err.println("Message: " + b.getMessage());
      System.err.println("Vendor: " + b.getErrorCode());
      System.err.print("Update counts: ");
      int[] updateCounts = b.getUpdateCounts();
      for (int i = 0; i < updateCounts.length; i++) {
        System.err.print(updateCounts[i] + " ");
      }
    }
    catch (SQLException ex) {
      System.err.println("SQLException: " + ex.getMessage());
      System.err.println("SQLState: " + ex.getSQLState());
      System.err.println("Message: " + ex.getMessage());
      System.err.println("Vendor: " + ex.getErrorCode());
    }finally {
      uprs.close();
      stmt.close();
      con.close();    }
  }
}