Package org.uploadDB.Connect

Examples of org.uploadDB.Connect.DBConnection


  /**
   * This method creates a database connection using the information entered in the connection screen.
   * @param cs
   */
  public void CreateConnection(ConnectionScreen cs) {
    this.setDbCon(new DBConnection(cs.getFUsername().getText(),cs.getFPassword().getPassword(),cs.getFHost().getText(),cs.getFPort().getText(),cs.getFDatabase().getText(),cs.getDBvendor(),cs.getDBvendorClassPath()));
    dbCon.Connect();
    System.out.println("Test CreateConnection Method");
  }
View Full Code Here

TOP

Related Classes of org.uploadDB.Connect.DBConnection

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.