Stored procedure utilities : Store Procedure « Database SQL JDBC « 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 » Database SQL JDBC » Store Procedure 




Stored procedure utilities
  
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.SQLException;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;

public class StoredProcUtil {

  private static DataSource pool;

  private static Context env;

  static {

    try {

      env = (Contextnew InitialContext().lookup("java:comp/env");

      pool = (DataSourceenv.lookup("jdbc/oracle-8i-athletes");

      if (pool == null)
        throw new Exception(
            "'oracle-8i-athletes' is an unknown DataSource");

    catch (Exception e) {

      System.out.println(e);

    }

  }//static

  public static void addRaceEvent(String name, String location, String date) {

    if ((!check(name)) || (!check(location)) || (!check(date)))
      throw new IllegalArgumentException(
          "Invalid param values passed to addRaceEvent()");

    Connection conn = null;

    try {

      conn = pool.getConnection();

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

      CallableStatement cs = null;

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

      cs.setString(1, name);
      cs.setString(2, location);
      cs.setString(3, date);

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

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

    catch (SQLException sqle) {
    }

  }//addRaceEvent

  private static boolean check(String value) {

    if (value == null || value.equals(""))
      return false;

    return true;
  }

}



           
         
    
  














Related examples in the same category
1.Call Stored Procedure In Oracle And Pass In Out Parameters
2.Get Stored Procedure Name And Type
3.Get Stored Procedure Signature
4.Connect to database and call stored procedure
5.Call a stored procedure with no parameters and return value.
6.Call Stored Procedure In MySql
7.Call a procedure with one IN parameter
8.Call a procedure with one OUT parameter
9.Call a procedure with one IN/OUT parameter
10.Calling a Function in a Database: call functions with IN, OUT, and IN/OUT parameters.
11.Call a function with one IN parameter; the function returns a VARCHAR
12.Call a function with one OUT parameter; the function returns a VARCHAR
13.Creating a Stored Procedure or Function in an Oracle Database
14.Call a function with one IN/OUT parameter; the function returns a VARCHAR
15.Create procedure myprocin with an IN parameter named x.
16.Create procedure myprocout with an OUT parameter named x
17.Create procedure myprocinout with an IN/OUT parameter named x; x is an IN parameter and an OUT parameter
18.Create a function named myfunc which returns a VARCHAR value; the function has no parameter
19.Create a function named myfuncin which returns a VARCHAR value; the function has an IN parameter named x
20.Create a function named myfuncout which returns a VARCHAR value;
21.Create a function named myfuncinout that returns a VARCHAR value
22.Calling a Stored Procedure in a Database with no parameters
23.Getting the Stored Procedure Names in a Database: retrieves the names of all stored procedures in a database.
24.Call stored procedure
25.Stored procedure with Input/Output parms and a ResultSet
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.