コード例 #1
0
 public static boolean isValidSQLDatatype(int datatype) {
   return equivalentTypes.keySet().contains(SQLType.toSQLType(datatype));
 }
コード例 #2
0
 public static XSDType getEquivalentType(int sqlType) {
   return equivalentTypes.get(SQLType.toSQLType(sqlType));
 }