Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/01/2012, 20:47
givanrg
 
Fecha de Ingreso: enero-2012
Ubicación: México
Mensajes: 27
Antigüedad: 12 años, 10 meses
Puntos: 0
Respuesta: Ayudaa pasar datos de un jtable a cajas de texto

Prueba con este:

PreparedStatement stmt = null;
try {
Class.forName("com.mysql.jdbc.Driver");
Connection conexion = DriverManager.getConnection("jdbc:mysql://localhost/Tu_Base_de_Datos?user=root&password=Tu_Password");
Statement instruccion = conexion.createStatement();
ResultSet tabla = instruccion.executeQuery("SELECT * FROM Tu_Tabla ");

while (tabla.next()) {

txt_codigo.setText(tabla.getString(1));
txt_nombre.setText(tabla.getString(2));
txt_edad.setText(tabla.getString(3));
}
}
catch(ClassNotFoundException e){ System.out.println(e); }
catch(SQLException e){ System.out.println(e); }
catch(Exception e){ System.out.println(e); }