ソースを参照

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

読み込み中…
キャンセル
保存