blob: 1f1a1bd3ae7e42d06ccabb34e1d4f3f826a18078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// file : qt/sqlite/date-time/driver.cxx
// author : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// Test Qt date/time type persistence. SQLite version.
//
#include <memory> // std::auto_ptr
#include <cassert>
#include <iostream>
#include <QDateTime>
#include <odb/sqlite/database.hxx>
#include <odb/sqlite/transaction.hxx>
#include <common/common.hxx>
#include "test.hxx"
#include "test-odb.hxx"
using namespace std;
using namespace odb::core;
int
main (int argc, char* argv[])
{
try
{
auto_ptr<database> db (create_database (argc, argv));
//
// Check valid dates and times.
//
object o;
// Check persistence of null values.
//
{
transaction t (db->begin ());
db->persist (o);
t.commit ();
}
{
transaction t (db->begin ());
auto_ptr<object> ol (db->load<object> (o.id));
t.commit ();
assert (ol->is_null ());
}
// Check persistence of valid dates and times.
//
QDateTime t (QDateTime::currentDateTime ());
o.date = t.date ();
o.julian_day = t.date ();
o.time = t.time ();
// We do not take milliseconds into account when storing
// time as seconds. Zero the millisecond part to avoid a
// false negative.
//
o.seconds = QTime (t.time ().hour (),
t.time ().minute (),
t.time ().second ());
o.date_time = t;
{
transaction t (db->begin ());
db->persist (o);
t.commit ();
}
{
transaction t (db->begin ());
auto_ptr<object> ol (db->load<object> (o.id));
t.commit ();
assert (*ol == o);
}
}
catch (const odb::exception& e)
{
cerr << e.what () << endl;
return 1;
}
}
|