Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/04/2015, 19:41
Lawliet18
 
Fecha de Ingreso: marzo-2015
Mensajes: 45
Antigüedad: 9 años, 9 meses
Puntos: 2
Respuesta: Java + postgresql + callablestatement

Hola...

Te recomiendo que cada que subas código uses el Highlight...

Código Java:
Ver original
  1. public class ControlReligion{
  2.     private CallableStatement sentencia = null;
  3.     public void ingresarCliente(Integer numRel, String nomRel) {
  4.         try {
  5.             sentencia = Base_Datos.conexion.prepareCall("{ ? = call insertareligion(?,?)}");
  6.             sentencia.setInt(2, 200501);
  7.             sentencia.setString(3, "CATOLICO");
  8.             sentencia.registerOutParameter(1, Types.BOOLEAN);
  9.             boolean noProblema = sentencia.execute();
  10.             if (noProblema){
  11.                 System.out.println("Se ejecuto correctamente");
  12.             }
  13.             sentencia.close();
  14.         } catch (SQLException e) {
  15.             System.out.println("CLASE: ControlReligion \nMETODO: ingresarCliente(Integer,String) ERROR:" + e);
  16.         }
  17.     }
  18. }

Intenta con ello, únicamente cambie la forma en que pasas los parámetros cuando llamas la función.

Cualquier duda y/o comentario, aquí estamos. Suerte!