Package com.slytechs.utils.db.DatabaseUtils

Examples of com.slytechs.utils.db.DatabaseUtils.DatabaseType


   *
   * @param dbType
   *   The database type to set.
   */
  public void setDbType(DatabaseType dbType) {
    DatabaseType oldValue = this.dbType;
    this.dbType = dbType;
   
    properties.put(DB_TYPE, dbType);
   
    firePropertyChange(DBProperties.DB_TYPE, oldValue, dbType);
View Full Code Here

TOP

Related Classes of com.slytechs.utils.db.DatabaseUtils.DatabaseType

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.