Skip to content

Instantly share code, notes, and snippets.

@juarezjuniorgithub
Created September 16, 2023 18:54
Show Gist options
  • Save juarezjuniorgithub/751722bb585942b800bf3a3e5ceb318a to your computer and use it in GitHub Desktop.
Save juarezjuniorgithub/751722bb585942b800bf3a3e5ceb318a to your computer and use it in GitHub Desktop.
JDBCStoredProcHqEmployee.java (code sample) - The new BOOLEAN data type in Oracle Database 23c with PL/SQL and the JDBC Drivers (21c, 23c) @ OracleDevs on Medium.com
/*
Copyright (c) 2022, 2023, Oracle and/or its affiliates.
This software is dual-licensed to you under the Universal Permissive License
(UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License
2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose
either license.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.oracle.dev.jdbc;
import java.sql.CallableStatement;
import java.sql.SQLException;
import java.util.Properties;
import java.util.concurrent.ThreadLocalRandom;
import oracle.jdbc.OracleConnection;
import oracle.jdbc.pool.OracleDataSource;
public class JDBCStoredProcHqEmployee {
private final static String DB_URL = "jdbc:oracle:thin:@<DB_HOST>:<DB_PORT>/<DB_NAME>";
private final static String DB_USER = "<DB_USER>";
private final static String DB_PASSWORD = "<DB_PASSWORD>";
private static OracleConnection con;
private static CallableStatement stmt;
public static void main(String[] args) {
System.out.println("--------------------");
System.out.println("Input parameters");
System.out.println("--------------------");
int id = ThreadLocalRandom.current().nextInt();
System.out.println("ID: " + id);
String name = "Duke";
System.out.println("Name: " + name);
String role = "Mascott";
System.out.println("Role: " + role);
// boolean active = true;
// System.out.println("Active: " + active);
try {
Properties info = new Properties();
info.put(OracleConnection.CONNECTION_PROPERTY_USER_NAME, DB_USER);
info.put(OracleConnection.CONNECTION_PROPERTY_PASSWORD, DB_PASSWORD);
info.put(OracleConnection.CONNECTION_PROPERTY_FAN_ENABLED, false);
// JDBC datasource
OracleDataSource ods = new OracleDataSource();
ods.setURL(DB_URL);
ods.setConnectionProperties(info);
// JDBC connection
con = (OracleConnection) ods.getConnection();
// CallableStatement
// https://docs.oracle.com/en/java/javase/19/docs/api/java.sql/java/sql/CallableStatement.html
stmt = con.prepareCall("{call INSERT_HQ_EMPLOYEE_PRC(?,?,?,?,?)}");
// set IN parameters
stmt.setInt(1, id);
stmt.setString(2, name);
stmt.setString(3, role);
stmt.setBoolean(4, true);
// register OUT parameter
stmt.registerOutParameter(5, java.sql.Types.VARCHAR);
stmt.executeUpdate();
// get OUT parameter
String result = stmt.getString(5);
System.out.println("--------------------\n");
System.out.println("Output parameter");
System.out.println("--------------------");
System.out.println("Procedured executed : " + result);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
stmt.close();
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment