java/sql-dk/src/info/globalcode/sql/dk/CLIParser.java
branchv_0
changeset 93 5a4dbe6f962c
parent 79 e19a13ed19a9
child 96 7ae30649b30b
--- a/java/sql-dk/src/info/globalcode/sql/dk/CLIParser.java	Sat Dec 28 20:36:29 2013 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/CLIParser.java	Sat Dec 28 20:47:43 2013 +0100
@@ -46,11 +46,11 @@
 					for (String oneType : typesString.split(",")) {
 						int sepatratorIndex = oneType.indexOf(TYPE_NAME_SEPARATOR);
 						if (sepatratorIndex == -1) {
-							numberedTypes.add(getType(oneType));
+							numberedTypes.add(getType(oneType.toUpperCase()));
 						} else {
 							String namePart = oneType.substring(0, sepatratorIndex).trim();
 							String typePart = oneType.substring(sepatratorIndex + TYPE_NAME_SEPARATOR.length(), oneType.length());
-							namedTypes.put(namePart, getType(typePart));
+							namedTypes.put(namePart, getType(typePart.toUpperCase()));
 						}
 					}
 					break;