55c55 < if (strType.equalsIgnoreCase("String") || strType.equalsIgnoreCase("Varchar")) --- > if (strType.equals("String")) 57c57 < if (strType.equalsIgnoreCase("Double")) --- > if (strType.equals("Double")) 59c59 < if (strType.equalsIgnoreCase("Integer")) --- > if (strType.equals("Integer")) 61c61 < if (strType.equalsIgnoreCase("Boolean")) --- > if (strType.equals("Boolean")) 63c63 < if (strType.equalsIgnoreCase("Date")) --- > if (strType.equals("Date"))