A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/javaexamples/jdbc_rollback.htm below:

How to make a Savepoint & Rollback in Java

How to make a Savepoint & Rollback in Java Problem Description

How to make a Savepoint & Rollback in Java?

Solution

Following example uses Rollback method of connection to Rollback to a previously saved SavePoint.

import java.sql.*;

public class jdbcConn {
   public static void main(String[] args) throws Exception {
      Class.forName("org.apache.derby.jdbc.ClientDriver");
      Connection con = DriverManager.getConnection(
         "jdbc:derby://localhost:1527/testDb","name","pass");
      
      Statement stmt = con.createStatement();
      String query1 = "insert into emp values(5,'name','job')";
      String query2 = "select * from emp";
      
      con.setAutoCommit(false);
      Savepoint spt1 = con.setSavepoint("svpt1");
      stmt.execute(query1);
      ResultSet rs = stmt.executeQuery(query2);
      int no_of_rows = 0;
      
      while (rs.next()) {
         no_of_rows++;
      }
      System.out.println("rows before rollback statement = " + no_of_rows);
      con.rollback(spt1);
      con.commit();
      no_of_rows = 0;
      rs = stmt.executeQuery(query2);
      
      while (rs.next()) {
         no_of_rows++;
      }
      System.out.println("rows after rollback statement = " + no_of_rows);
   }
}
Result

The above code sample will produce the following result. The result may vary.

rows before rollback statement = 4
rows after rollback statement = 3

java_jdbc.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4