|
|
@ -36,10 +36,8 @@ public enum DataBaseType {
|
|
|
|
private final String desc;
|
|
|
|
private final String desc;
|
|
|
|
|
|
|
|
|
|
|
|
public static DataBaseType getDbType(String dbType) {
|
|
|
|
public static DataBaseType getDbType(String dbType) {
|
|
|
|
DataBaseType[] var1 = values();
|
|
|
|
DataBaseType[] var = values();
|
|
|
|
int var2 = var1.length;
|
|
|
|
for (DataBaseType type : var) {
|
|
|
|
|
|
|
|
|
|
|
|
for (DataBaseType type : var1) {
|
|
|
|
|
|
|
|
if (type.db.equalsIgnoreCase(dbType)) {
|
|
|
|
if (type.db.equalsIgnoreCase(dbType)) {
|
|
|
|
return type;
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|