소스 검색

Drop precision and length from SQL->Java type determination

tags/v1.6.0
James Moger 9 년 전
부모
커밋
ac8eed79c2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      src/main/java/com/iciql/ModelUtils.java

+ 4
- 0
src/main/java/com/iciql/ModelUtils.java 파일 보기

@@ -189,6 +189,10 @@ class ModelUtils {
sqlType = sqlType.toUpperCase();
// XXX dropping "UNSIGNED" or parts like that could be trouble
sqlType = sqlType.split(" ")[0].trim();
if (sqlType.indexOf('(') > -1) {
// strip out length or precision
sqlType = sqlType.substring(0, sqlType.indexOf('('));
}

if (SQL_TYPES.containsKey(sqlType)) {
// convert the sqlType to a standard type

Loading…
취소
저장