Package org.sfsoft.sentenciassql.util

Examples of org.sfsoft.sentenciassql.util.Database


      Class.forName("com.mysql.jdbc.Driver").newInstance();
      conexion = DriverManager.getConnection("jdbc:mysql://" + servidor + ":3306" + "/" + baseDatos,
          usuario, contrasena);
      JOptionPane.showMessageDialog(null, "Se ha conectado con �xito");
     
      database = new Database(conexion);
     
      cargarDatos();
     
      activarControles();
     
View Full Code Here

TOP

Related Classes of org.sfsoft.sentenciassql.util.Database

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.