 
			
				02/06/2016, 11:21
			
			
			     |  
      |    |    |    Fecha de Ingreso: abril-2016  Ubicación: Acayucan, Veracruz  
						Mensajes: 10
					  Antigüedad: 9 años, 7 meses Puntos: 0     |        |  
  |      Respuesta: Los datos de un jtable no se guardan en la base de datos        mira aqui me marca el error. tal ves lo puse mal     
int restaa() 
{   
    int row = tbAbono.getSelectedRow() ; 
       if(row!= -1){ 
           Object Abo = tbAbono.getValueAt(row, 5); 
           Object Res = tbAbono.getValueAt(row, 6); 
            int a = Integer.parseInt(Abo.toString()); 
            int b = Integer.parseInt(Res.toString()); 
           tbAbono.setValueAt(b-a, row, 6); 
           return(resultado); .........................................AQUI 
   } 
}           |