All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.landawn.abacus.util.DBVersion Maven / Gradle / Ivy

/*
 * Copyright (C) 2015 HaiYang Li
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

package com.landawn.abacus.util;

// TODO: Auto-generated Javadoc
/**
 * The Enum DBVersion.
 *
 * @author Haiyang Li
 * @since 0.8
 */
public enum DBVersion {

    /** The h2. */
    H2,
    /** The hsqldb. */
    HSQLDB,
    /** The mysql 5 5. */
    MYSQL_5_5,
    /** The mysql 5 6. */
    MYSQL_5_6,
    /** The mysql 5 7. */
    MYSQL_5_7,
    /** The mysql 5 8. */
    MYSQL_5_8,
    /** The mysql 5 9. */
    MYSQL_5_9,
    /** The mysql 6. */
    MYSQL_6,
    /** The mysql 7. */
    MYSQL_7,
    /** The mysql 8. */
    MYSQL_8,
    /** The mysql 9. */
    MYSQL_9,
    /** The mysql 10. */
    MYSQL_10,
    /** The mysql others. */
    MYSQL_OTHERS,
    /** The postgresql 9 2. */
    //
    POSTGRESQL_9_2,
    /** The postgresql 9 3. */
    POSTGRESQL_9_3,
    /** The postgresql 9 4. */
    POSTGRESQL_9_4,
    /** The postgresql 9 5. */
    POSTGRESQL_9_5,
    /** The postgresql 9 6. */
    POSTGRESQL_9_6,
    /** The postgresql 10. */
    POSTGRESQL_10,
    /** The postgresql 11. */
    POSTGRESQL_11,
    /** The postgresql 12. */
    POSTGRESQL_12,
    /** The postgresql others. */
    POSTGRESQL_OTHERS,
    /** The oracle. */
    //
    ORACLE,
    /** The db2. */
    DB2,
    /** The sql server. */
    SQL_SERVER,
    /** The others. */
    OTHERS;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy