The JDBC CallableStatement is used to execute the store procedure and functions. Let us study JDBC CallableStatement by IN parameter example.
Example:
insertEMPLOYEE Procedure
JDBC CallableStatement Stored procedure IN parameter example. CREATE OR REPLACE PROCEDURE insertEMPLOYEE( e_id IN EMPLOYEE.EMPLOYEE_ID%TYPE, e_name IN EMPLOYEE.NAME%TYPE, e_salary IN EMPLOYEE.SALARY%TYPE) IS BEGIN INSERT INTO EMPLOYEE ("EMPLOYEE_ID", "NAME", "SALARY") VALUES (e_id, e_name, e_salary); COMMIT; END; |
JDBCTest.java
import java.sql.CallableStatement; import java.sql.Connection; import com.w3schools.util.JDBCUtil; /** * This class is used to insert a record in DB table * using CallableStatement. * @author w3schools */ public class JDBCTest { public static void main(String args[]){ Connection conn = null; CallableStatement callableStatement = null; String proc = "{call insertEMPLOYEE(?,?,?)}"; try{ //get connection conn = JDBCUtil.getConnection(); //create callableStatement callableStatement = conn.prepareCall(proc); callableStatement.setInt(1, 5); callableStatement.setString(2, "Shveta"); callableStatement.setInt(3, 100000); //execute query callableStatement.executeUpdate(); //close connection callableStatement.close(); conn.close(); System.out.println("Record inserted successfully."); }catch(Exception e){ e.printStackTrace(); } } } |
JDBCUtil.java
import java.sql.Connection; import java.sql.DriverManager; /** * This is a utility class for JDBC connection. * @author w3schools */ public class JDBCUtil { //JDBC and database properties. private static final String DB_DRIVER = "oracle.jdbc.driver.OracleDriver"; private static final String DB_URL = "jdbc:oracle:thin:@localhost:1521:XE"; private static final String DB_USERNAME = "system"; private static final String DB_PASSWORD = "oracle"; public static Connection getConnection(){ Connection conn = null; try{ //Register the JDBC driver Class.forName(DB_DRIVER); //Open the connection conn = DriverManager. getConnection(DB_URL, DB_USERNAME, DB_PASSWORD); if(conn != null){ System.out.println("Successfully connected."); }else{ System.out.println("Failed to connect."); } }catch(Exception e){ e.printStackTrace(); } return conn; } } |
Output:
Successfully connected.
Record inserted successfully. |
Download this example.
Next Topic: JDBC CallableStatement Stored procedure OUT parameter example.
Previous Topic: JDBC CallableStatement interface.
Related Topics:
JDBC CallableStatement Stored procedure IN parameter example. |
JDBC CallableStatement Stored procedure OUT parameter example. |
JDBC CallableStatement Stored procedure batch update example. |