Database transaction : Database « Servlets « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Servlets » DatabaseScreenshots 
Database transaction

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;

public class DbServletTrans extends HttpServlet {

  DataSource pool;

  public void init() throws ServletException {

    Context env = null;

    try {

      env = (Contextnew InitialContext().lookup("java:comp/env");
      pool = (DataSourceenv.lookup("jdbc/oracle-8i-athletes");
      if (pool == null)
        throw new ServletException(
            "'oracle-8i-athletes' is an unknown DataSource");

    catch (NamingException ne) {

      throw new ServletException(ne);

    }

  }

  public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, java.io.IOException {

    Connection conn = null;
    Statement stmt = null;

    response.setContentType("text/html");
    java.io.PrintWriter out = response.getWriter();
    out
        .println("<html><head><title>Using transactions</title></head><body>");
    out.println("<h2>These SQL statements are part of a transaction</h2>");
    out.println("CallableStatement.executeUpdate()");
    out.println("<br><br>");
    out.println("Statement.executeUpdate()");
    out.println("<br><br>");

    try {

      conn = pool.getConnection();

      out.println("AutoCommit before setAutoCommit(): "
          + conn.getAutoCommit() "<br><br>");

      out.println("Transaction isolation level: ");

      switch (conn.getTransactionIsolation()) {

      case 0:
        out.println("TRANSACTION_NONE<br><br>");
        break;
      case 1:
        out.println("TRANSACTION_READ_UNCOMMITTED<br><br>");
        break;
      case 2:
        out.println("TRANSACTION_READ_COMMITTED<br><br>");
        break;
      case 4:
        out.println("TRANSACTION_REPEATABLE_READ<br><br>");
        break;
      case 8:
        out.println("TRANSACTION_SERIALIZABLE<br><br>");
        break;
      default:
        out.println("UNKNOWN<br><br>");

      }
      conn.setAutoCommit(false);

      CallableStatement cs = null;

      //Create an instance of the CallableStatement
      cs = conn.prepareCall("{call addEvent (?,?,?)}");

      cs.setString(1"Salisbury Beach 5-Miler");
      cs.setString(2"Salisbury MA");
      cs.setString(3"14-Aug-2003");

      //Call the inherited PreparedStatement.executeUpdate() method
      cs.executeUpdate();

      String sql = "update raceevent set racedate='13-Aug-2003' "
          "where name='Salisbury Beach 5-Miler'";

      int res = 0;

      stmt = conn.createStatement();

      res = stmt.executeUpdate(sql);

      //commit the two SQL statements
      conn.commit();

    catch (Exception e) {

      try {
        //rollback the transaction in case of a problem
        conn.rollback();

      catch (SQLException sqle) {
      }

      throw new ServletException(e.getMessage());

    finally {

      try {

        if (stmt != null)
          stmt.close();

        if (conn != null)
          conn.close();//this returns the Connection to the
                 // Connection pool

      catch (SQLException sqle) {
      }

    }
    out.println("</table></body></html>");
    out.close();

  //doGet

}


           
       
Related examples in the same category
1. Servlets Database Query
2. Using JDBC in Servlets
3. Cached Connection Servlet
4. Transaction Connection Servlet
5. Session Login JDBC
6. JDBC and Servlet
7. Database and Servlet: Database MetaData
8. Database and Servlet: Store procedure
9. Typical database commands
10. Process a raw SQL query; use ResultSetMetaData to format it
11. See Account
12. Guest Book Servlet
13. Dedicated Connection Servlet
14. Login Servlets
15. OCCI Connection Servlet
16. Get Column Names From ResultSet
17. Display Clob Servlet
18. Delete Blob From Servlet
19. Delete Clob From Servlet
20. Display Blob Servlet
21. Delete Clob From Oracle in a Servlet
22. Insert Clob to MySql Servlet
23. Update Clob data stored in MySql from a Servlet
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.