A ver si te sirve esto, es un pqueño procedimiento almacenado pero incluye algunas cosas practicas
PLC
Este metodo invoca a un SP en oracle a ver si te sirve.
Código PHP:
public static void busca_Empleado(String ss){
try{
CallableStatement cs = con.prepareCall("{call find_employee2()}");
cs.setString(1,ss);
cs.registerOutParameter(2,oracle.jdbc.OracleTypes.VARCHAR);
cs.execute();
String nombre = cs.getString(2);
System.out.println("El nombre del empleado es: " + nombre);
}catch(SQLException oe){
System.out.println("Message: " + oe.getMessage());
System.out.println("SQLState: " + oe.getSQLState());
System.out.println("ErrorCode: " + oe.getErrorCode());
}//Fin del try
}//Fin del metodo busca_Empleado
Saludos