aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-14 12:53:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-14 12:53:01 +0200
commitbb12bfac7909cc6b23743a638f04a5ef988dcd76 (patch)
treef6321a9c3a65e9542f865d8cd9992e3b67a198dc
parentc5d8c8293ce3e35d0606d3054cb74baf9ac02bd2 (diff)
Cosmetic changes
-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