summaryrefslogtreecommitdiff
path: root/qt/mysql/date-time/test.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-07 12:54:04 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:52:23 +0200
commit26f3245189b3f5d4a96587953ac1d33f45465f1d (patch)
tree3e5d0d7c6bad9213df99682ac415efaea8a55603 /qt/mysql/date-time/test.hxx
parent75f8ef2dcddea1260a31491c97a26d30a18fce6c (diff)
Add qt/basic and qt/date-time MySQL tests
Diffstat (limited to 'qt/mysql/date-time/test.hxx')
-rw-r--r--qt/mysql/date-time/test.hxx55
1 files changed, 55 insertions, 0 deletions
diff --git a/qt/mysql/date-time/test.hxx b/qt/mysql/date-time/test.hxx
new file mode 100644
index 0000000..9eb328e
--- /dev/null
+++ b/qt/mysql/date-time/test.hxx
@@ -0,0 +1,55 @@
+// file : qt/mysql/date-time/test.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <vector>
+
+#include <QDateTime>
+
+#include <odb/core.hxx>
+
+#pragma db object
+struct object
+{
+ bool
+ operator== (const object& x) const
+ {
+ return
+ id == x.id &&
+ date == x.date &&
+ date_time == x.date_time &&
+ timestamp == x.timestamp &&
+ time == x.time;
+ }
+
+ bool
+ is_null () const
+ {
+ return
+ date.isNull () &&
+ date_time.isNull () &&
+ timestamp.isNull () &&
+ time.isNull ();
+ }
+
+ #pragma db id auto
+ unsigned long id;
+
+ QDate date;
+ QDateTime date_time;
+
+ // Specify NULL explicitly to suppress auto-initialization and
+ // auto-update characteristics of TIMESTAMP datatype, and to allow
+ // NULL values.
+ //
+ #pragma db type("TIMESTAMP NULL")
+ QDateTime timestamp;
+
+ QTime time;
+};
+
+#endif // TEST_HXX