|Home |Login |Registration |Struts Step by Step Tutorial |Hibernate Step by Step Tutorial |Spring Step by Step Tutorial |JSP Step by Step Tutorial |JDBC Step by Step Tutorial |Web Services Step by Step Tutorial |EJB fundamentals | ORACLE Step by Step Tutorial | SCJP 5.0 and SCJP 6.0 Study Guide | SCWCD 5.0 Study Guide | SCJP Tips
Java mock test | SCJP mock test | SCJP DUMP | SCBCD mock test |Java online test exam | JSP online test | ORACLE online test | Hibernate online test | Servlet online test | Struts online test | EJB online test | C online test | C++ online test | Aptitude online test

Java interview questions | JSP interview questions | ORACLE interview questions | Hibernate interview questions | Servlet interview questions | Struts interview questions | JDBC interview questions | C/C++ interview questions | Spring interview questions | JMS interview questions | Informatica interview questions | EJB interview questions | OOPS and Design Pattern interview questions
1600 PMP mock questions 1400 CAPM mock questions 800 SCJP 6 mock questions 600 OCAJP 7 mock questions 590 OCPJP 7 mock questions 556 SCWCD 5 mock questions 500 OCEJWCD 6 mock questions pdfDownload (java,struts, hibernet etc) JobsJobs and Walkins

JDBC Tutorials

Q. What is Batch Updates Using Statements in JDBC ?

Batch Updates calls to database as a chunk.
If you want to run more than one sql statement in a single database call then you have to go for Batch Update.
All Insert in single data base call and single transaction ( if one fail the all fail)

For Example :
public class TestDB {
public static void main(String[] args) {
try {

/** Loading the driver*/

Class.forName("com.oracle.jdbc.Driver");

/** Getting Connection*/
Connection con = DriverManager.getConnection("jdbc:oracle://localhost:3306/test","test","test");

/** Creating Statement*/
con.setAutoCommit(false); // This means after all insert then commit at last
Statement stmt = con.createStatement();
        stmt.addBatch("INSERT INTO EMP VALUES(1,'Ram1')");
        stmt.addBatch("INSERT INTO EMP VALUES(2,'Ram2')");
        stmt.addBatch("INSERT INTO EMP VALUES(3,'Ram3')");
        stmt.addBatch("INSERT INTO EMP VALUES(4,'Ram4')");
        int [] updateCounts= stmt.executeBatch();
        con.commit();
        con.setAutoCommit(true);
        /// All Insert in single data base call and single transaction ( if one fail the all fail)

stmt.close();
con.close();

} catch (Exception e) {

e.printStackTrace();
}
     }
}

Suggested Jobs

   More Jobs >>

The information you are posting should be related to java and ORACLE technology. Not political.