com.bixuebihui.db.Dialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c-dbtools Show documentation
Show all versions of c-dbtools Show documentation
a fast small database connection pool and a active record flavor mini framework
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;
}