Examples of PostgresHelper


Examples of org.apache.ambari.server.orm.helpers.dbms.PostgresHelper

    if (databasePlatform instanceof OraclePlatform) {
      return new OracleHelper(databasePlatform);
    }else if (databasePlatform instanceof MySQLPlatform) {
      return new MySqlHelper(databasePlatform);
    }else if (databasePlatform instanceof PostgreSQLPlatform) {
      return new PostgresHelper(databasePlatform);
    }else if (databasePlatform instanceof DerbyPlatform) {
      return new DerbyHelper(databasePlatform);
    } else {
      return new GenericDbmsHelper(databasePlatform);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.