Database and Servlet: Store procedure : Database « Servlets « Java

Home
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.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Servlets » Database 




Database and Servlet: Store procedure

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

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 StoredProcServlet 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 {

    String eventName = request.getParameter("name");
    String location = request.getParameter("location");
    String date = request.getParameter("date");

    List paramList = new ArrayList();
    paramList.add(eventName);
    paramList.add(location);
    paramList.add(date);

    try {

      addRaceEvent(paramList);

    catch (SQLException sqle) {
      throw new ServletException(sqle.getMessage());
    }

    response.setContentType("text/html");
    java.io.PrintWriter out = response.getWriter();
    out.println("<html><head><title>Add an Event</title></head><body>");
    out.println("<h2>The Event named " + eventName
        " has been added to the database</h2>");

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

    out.close();

  //doGet

  public Connection getConnection() {

    Connection conn = null;

    try {

      conn = pool.getConnection();

    catch (SQLException sqle) {

      throw new ServletException(sqle.getMessage());

    finally {

      return conn;

    }

  }

  public void addRaceEvent(List valuesthrows SQLException {

    if (values == null)
      throw new SQLException("Invalid parameter in addRaceEvent method.");

    Connection conn = null;

    conn = getConnection();

    if (conn == null)
      throw new SQLException("Invalid Connection in addRaceEvent method");

    java.util.Iterator it = values.iterator();

    CallableStatement cs = null;

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

    for (int i = 1; i <= values.size(); i++)
      cs.setString(i, (Stringit.next());

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

    // return the connection to the pool
    conn.close();

  }//addRaceEvent

}


           
       














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 transaction
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.