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

com.bixuebihui.db.Dialect Maven / Gradle / Ivy

Go to download

a fast small database connection pool and a active record flavor mini framework

There is a newer version: 1.15.3.3
Show newest version
package com.bixuebihui.db;

/**
 * @author xwx
 */
public class Dialect {

    /** Constant UNKNOWN=0 */
    public static final int UNKNOWN = 0;
    /** Constant ORACLE=1 */
    public static final int ORACLE = 1;
    /** Constant DERBY=2 */
    public static final int DERBY = 2;
    /** Constant MYSQL=3 */
    public static final int MYSQL = 3;
    /** Constant SQLSERVER=4 */
    public static final int SQLSERVER = 4;
    /** Constant SQLSERVER_2005_AND_UP=7 */
    public static final int SQLSERVER_2005_AND_UP = 7;
    /** Constant POSTGRESQL=5 // POSTGRESQL NATIVE DRIVER*/
    public static final int POSTGRESQL = 5;
    /** Constant ACCESS=6 */
    public static final int ACCESS = 6;
    /** Constant H2=8 */
    public static final int H2 = 8;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy