Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/02/2008, 13:55
lordmaelwys
 
Fecha de Ingreso: octubre-2007
Mensajes: 34
Antigüedad: 17 años, 3 meses
Puntos: 0
java+package+procesure+update

Que tal amigazos, les cuento que tengo un problema al realizar un update al llamar desde una clase JAVA a un PROCEDURE dentro de un PACKAGE.

el problema en concreto es que no realiza el update... desde ya muchas gracias por su ayuda.

Codigo JAVA
Código PHP:
public void guardaInfoRS(String usernameString ticketString descripcion){
        
FormalRequest fr = new FormalRequest();
        
Connection conex Conexion.getConexion();
        try{
            
ResultSet rs null;
           
Statement stmt conex.createStatement();
            
String query "call pending_support.reopened("+fr.getNticket()+","+ticket+")";
             
rs stmt.executeQuery(query);
            
System.out.print("...datos guardatos exitosamente..."+ticket+"...."+fr.getNticket());
        }catch (
Exception e){
            
System.out.println("...no grabo ninguna wea...");
            
e.printStackTrace();
        } 
Codigo PL/SQL
Código PHP:
    PROCEDURE reopened(
        
ticket          NUMBER,
        
asociateticket  NUMBER)IS
        BEGIN
        UPDATE solicitud_soporte
            SET
                ticket_asociado     
=   asociateticket,
                
fk_id_estado_hist   =   2
                WHERE numero_ticket 
=   ticket;
            
COMMIT;
        
END reopened;
END pending_support