summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/db/RecordParser.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/db/RecordParser.java b/wizards/com/sun/star/wizards/db/RecordParser.java
index b71ae9997262..21be84a664a1 100644
--- a/wizards/com/sun/star/wizards/db/RecordParser.java
+++ b/wizards/com/sun/star/wizards/db/RecordParser.java
@@ -131,12 +131,14 @@ public class RecordParser extends QueryMetaData
case DataType.FLOAT: // == 6;
case DataType.REAL: // == 7;
case DataType.DOUBLE: // == 8;
- case DataType.DATE: // == 91;
case DataType.TIME: // == 92;
- case DataType.TIMESTAMP: // == 93;
oAny = getColumnDoubleValue(ColIndex, false);
break;
+ case DataType.DATE: // == 91;
+ case DataType.TIMESTAMP: // == 93;
+ oAny = getColumnDoubleValue(ColIndex, true);
+ break;
case DataType.CHAR: // == 1;
case DataType.VARCHAR: // == 12;
case DataType.LONGVARCHAR: // == -1;