Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $ public void Conectar() {
  2. try {
  3.  
  4. conexion = DriverManager.getConnection("jdbc:mysql://localhost/sistema_gmg", "root", "1405");
  5.  
  6. st = conexion.createStatement();
  7. rs = st.executeQuery("Select * from ciclos");
  8. rs.next();
  9.  
  10.  
  11. this.jtf_id_ciclo.setText(rs.getString("id_ciclo"));
  12.  
  13. this.jtf_ciclo.setText(rs.getString("ciclo"));
  14.  
  15. this.jtf_finicio.setText(rs.getString("fecha_inicio"));
  16.  
  17. this.jtf_ftermino.setText(rs.getString("fecha_termino"));
  18.  
  19. } catch (SQLException err) {
  20.  
  21. JOptionPane.showMessageDialog(null, "Error " + err.getMessage());
  22.  
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement