Exemplo n.º 1
0
 public static JdbcType stringToJdbcType(String type) {
   try {
     return JdbcType.valueOf(type);
   } catch (IllegalArgumentException ex) {
     return JdbcType.OTHER; // db specific type
   }
 }
Exemplo n.º 2
0
 static {
   for (JdbcType type : JdbcType.values()) {
     map.put(type.order, type);
   }
 }