blob: aeba3ee6eaf4b79e5336bd6cb8e6600a4ee794e2 (
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
91
92
93
94
95
96
97
|
// file : schema/embedded/driver.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
#include <memory> // std::auto_ptr
#include <iostream>
#include <odb/database.hxx>
#include <odb/transaction.hxx>
#include <odb/schema-catalog.hxx>
#include "database.hxx" // create_database
#include "person.hxx"
#include "person-odb.hxx"
using namespace std;
using namespace odb::core;
int
main (int argc, char* argv[])
{
try
{
typedef odb::query<person> query;
typedef odb::result<person> result;
auto_ptr<database> db (create_database (argc, argv));
// Create the database schema.
//
{
transaction t (db->begin ());
schema_catalog::create_schema (*db);
t.commit ();
}
// The following alternative version only creates the schema if it
// hasn't already been created. To detect the existence of the schema
// this version tries to query the database for a person object. If
// the corresponding table does not exist, then an exceptions will be
// thrown in which case we proceed to creating the schema.
//
/*
{
transaction t (db->begin ());
try
{
db->query<person> (false);
}
catch (const odb::exception& e)
{
schema_catalog::create_schema (*db);
}
t.commit ();
}
*/
// Create a few persistent person objects.
//
{
person john ("John", "Doe", 33);
person jane ("Jane", "Doe", 32);
person joe ("Joe", "Dirt", 30);
transaction t (db->begin ());
db->persist (john);
db->persist (jane);
db->persist (joe);
t.commit ();
}
// Print those over 30.
//
{
transaction t (db->begin ());
result r (db->query<person> (query::age > 30));
for (result::iterator i (r.begin ()); i != r.end (); ++i)
{
cout << i->first () << " " << i->last () << endl;
}
t.commit ();
}
}
catch (const odb::exception& e)
{
cerr << e.what () << endl;
return 1;
}
}
|