提交 292df4ab authored 作者: Thomas Mueller's avatar Thomas Mueller

Linked tables: a workaround for Oracle DATE columns has been implemented

上级 94e383a0
...@@ -22,7 +22,7 @@ public class ValueDate extends Value { ...@@ -22,7 +22,7 @@ public class ValueDate extends Value {
/** /**
* The precision in digits. * The precision in digits.
*/ */
static final int PRECISION = 8; public static final int PRECISION = 8;
/** /**
* The display size of the textual representation of a date. * The display size of the textual representation of a date.
......
...@@ -20,7 +20,7 @@ public class ValueTime extends Value { ...@@ -20,7 +20,7 @@ public class ValueTime extends Value {
/** /**
* The precision in digits. * The precision in digits.
*/ */
static final int PRECISION = 6; public static final int PRECISION = 6;
/** /**
* The display size of the textual representation of a time. * The display size of the textual representation of a time.
......
...@@ -25,7 +25,7 @@ public class ValueTimestamp extends Value { ...@@ -25,7 +25,7 @@ public class ValueTimestamp extends Value {
/** /**
* The precision in digits. * The precision in digits.
*/ */
static final int PRECISION = 23; public static final int PRECISION = 23;
/** /**
* The display size of the textual representation of a timestamp. * The display size of the textual representation of a timestamp.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论