aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odb/qt/date-time/oracle/default-mapping.hxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/odb/qt/date-time/oracle/default-mapping.hxx b/odb/qt/date-time/oracle/default-mapping.hxx
index 7ec927d..bdbd0b4 100644
--- a/odb/qt/date-time/oracle/default-mapping.hxx
+++ b/odb/qt/date-time/oracle/default-mapping.hxx
@@ -15,14 +15,16 @@
//
#pragma db value(QDate) type("DATE") null
-// Map QTime to Oracle INTERVAL DAY(0) TO SECOND by default. QTime can only
-// represent clock times with a maximum precision of milliseconds. QTime
-// provides a null representation so allow NULL values by default.
+// Map QTime to Oracle INTERVAL DAY(0) TO SECOND(3) by default. QTime can
+// only represent clock times with a maximum precision of milliseconds.
+// QTime provides a null representation so allow NULL values by default.
//
#pragma db value(QTime) type("INTERVAL DAY(0) TO SECOND(3)") null
-// Map QDateTime to ORACLE TIMESTAMP by default. QDateTime provides a null
-// representation so allow NULL values by default.
+// Map QDateTime to Oracle TIMESTAMP(3) by default. QDateTime can only
+// represent clock times with a maximum precision of milliseconds.
+// QDateTime provides a null representation so allow NULL values by
+// default.
//
#pragma db value(QDateTime) type("TIMESTAMP(3)") null