We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dca067 commit cd8fe40Copy full SHA for cd8fe40
1 file changed
src/main/java/org/javawebstack/orm/SQLType.java
@@ -15,6 +15,7 @@ public enum SQLType {
15
16
FLOAT(Float.class),
17
DOUBLE(Double.class),
18
+ DECIMAL(Double.class),
19
20
// No native char method except for a char stream
21
CHAR(String.class),
@@ -27,10 +28,15 @@ public enum SQLType {
27
28
29
DATE(Date.class),
30
TIMESTAMP(Timestamp.class),
31
+ DATETIME(Timestamp.class),
32
33
ENUM(String.class),
34
- VARBINARY(byte[].class);
35
+ VARBINARY(byte[].class),
36
+ TINYBLOB(byte[].class),
37
+ BLOB(byte[].class),
38
+ MEDIUMBLOB(byte[].class),
39
+ LONGBLOB(byte[].class);
40
41
private final Class<?> javaType;
42
0 commit comments