Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/06/2011, 14:25
alexander01015
 
Fecha de Ingreso: mayo-2011
Ubicación: Lima
Mensajes: 89
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: llamar a funcion creada en musql desde java

Hola hkadejo hice lo siguiente aunque igual le falta algo porq me sale cero es como si no ejecutara pienso que le falta algo q estoy pasando por alto haber si hechas una mano
Código HTML:
Ver original
  1. static public String CountFilas(String filas) {
  2.        String mensaje=null;
  3.        int numero=0;
  4.         try {
  5.             ConectaDB db = new ConectaDB();
  6.             Connection cn = db.getConnection();
  7.  
  8.             if (cn == null) {
  9.                 mensaje = "No hay conexión a la base de datos...!";
  10.             } else {
  11.                 Statement st = cn.createStatement();
  12.          
  13.                 CallableStatement sp_CountFilas=cn.prepareCall("{call NumFilasActividad(?)}");
  14.                
  15.                 sp_CountFilas.registerOutParameter(1,Types.CHAR);
  16.                
  17.                 sp_CountFilas.execute();
  18.                
  19.                 numero=sp_CountFilas.getInt(1);
  20.                
  21.                 st.close();
  22.                 cn.close();
  23.             }
  24.         } catch (SQLException e) {
  25.             mensaje=null;
  26.         } catch (Exception e) {
  27.             mensaje=null;
  28.         }
  29.        
  30.  
  31.         return String.valueOf(numero);
  32.              
  33.     }
Te lo agradeceria mucho....