Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/12/2009, 02:10
mactus
 
Fecha de Ingreso: noviembre-2007
Mensajes: 81
Antigüedad: 17 años
Puntos: 0
Ayuda urgente

Como puedo llenar Jtable en netbeans ...de una consulta..
asi.. mandoa visualizar la informacion ,,
Código:
try
                    {
                            st = conexion.createStatement();
                            rs = st.executeQuery("SELECT apepat,apemat,nombre FROM alum where numcon  = "+"'"+Campo1+"'");

                            while (rs.next())
                            {
     this.jTextField3.setText(rs.getString("nombre"));

                            }

                            rs.close();
                    }

                    catch (Exception ioe)
                    {
                            System.out.println("LA ESPECIALIDAD NO EXISTE");
                    }

Ciomo lleno Jtable. ?-..