File: dbo.doc

package info (click to toggle)
witty 3.2.1-2%2Bdeb7u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 70,436 kB
  • sloc: cpp: 117,095; ansic: 77,999; xml: 7,564; sh: 1,037; perl: 208; makefile: 144; java: 86; sql: 14
file content (1235 lines) | stat: -rw-r--r-- 37,596 bytes parent folder | download
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
A hands-on introduction to Wt::Dbo
==================================

Koen Deforche <koen@emweb.be> +

For Wt 3.2.0 (July 14 2011)

:doc:           link:../reference/html/
:cpp:		pass:[C++]

== Introduction

+Wt::Dbo+ is a {cpp} ORM (Object-Relational-Mapping) library.

The library is distributed as part of http://www.webtoolkit.eu/wt[Wt]
for building database-driven web applications, but may be equally well
used independently from it.

The library provides a class-based view on database tables which keeps
an object-hiearchy of database object automatically synchronized with
a database by inserting, updating and deleting database
records. {cpp} classes map to database tables, class fields to
table columns, and pointers and collections of pointers to database
relations. An object from a mapped class is called a *database object*
(dbo). Query results may be defined in terms of database objects,
primitives, or tuples of these.

A modern {cpp} approach is used to solve the mapping problem. Rather
than resorting to XML-based descriptions of how {cpp} classes and
fields should map onto tables and columns, or using obscure macros,
the mapping is defined entirely in {cpp} code.

In this tutorial, we will work our way through a blogging example,
similar to the one that is distributed with the library.

[TIP]
===============================
The complete source code for the examples used in this tutorial are
available as ready-to-run programs in the +examples/feature/dbo/+ folder of
http://www.webtoolkit.eu/wt/download[Wt].
===============================

== Mapping a single class

We will start off with using +Wt::Dbo+ for mapping a single class +User+
to a corresponding table +user+.

[WARNING]
===============================
In this tutorial and the examples, we alias the namespace +Wt::Dbo+ to
+dbo+, and in our explanation we will refer to types and methods
available in that namespace directly.
===============================

To build the following example, you need to link against the +wtdbo+
and +wtdbosqlite3+ libraries.

.Mapping a single class (tutorial1.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>
#include <string>

namespace dbo = Wt::Dbo;

class User {
public:
    enum Role {
        Visitor = 0,
        Admin = 1,
        Alien = 42
    };

    std::string name;
    std::string password;
    Role        role;
    int         karma;

    template<class Action>
    void persist(Action& a)
    {
        dbo::field(a, name,     "name");
        dbo::field(a, password, "password");
        dbo::field(a, role,     "role");
        dbo::field(a, karma,    "karma");
    }
};
----

This example shows how persistence support is defined for a {cpp}
class. A template member method +persist()+ is defined which serves as
a persistence definition for the class. For each member in the class,
a call to
+{doc}group__dbo.html#ga8a2b653ff57f1459dfa2e556badd71d6[Wt::Dbo::field()]+
is used to map the field to a table column name.

As you may see, standard {cpp} types such as +int+, +std::string+ and
+enum+ types are readily supported by the library (a full list of supported 
types can be found in the documentation of +{doc}structWt_1_1Dbo_1_1sql\__value\__traits.html[Wt::Dbo::sql_value_traits<T>]+). Support for other
types can be added by specializing
+{doc}structWt_1_1Dbo_1_1sql\__value\__traits.html[Wt::Dbo::sql_value_traits<T>]+.
There is also support for built-in Wt types such as WDate, WDateTime, WTime and 
WString which can be enabled by including +<Wt/Dbo/WtSqlTraits>+.

The library defines a number of actions which will be applied to a
database object using its +persist()+ method, which applies it in turn
to all its members. These actions will then read, update or insert
database objects, create the schema, or propagate transaction
outcomes.

[NOTE]
===============================
For brevity, our example uses public members. There is nothing that
prevents you to encapsulate your state in private members and provide
accessor methods. You may even define the persistence method in terms of
accessor methods by differentiating between read and write actions.
===============================

== A first session

Now that we have a mapping definition for our +User+ class, we can
start a database session, create our schema (if necessary) and add a
user to the database.

Let us walk through the code for doing this.

.(tutorial1.C continued)
[source,cpp]
----
void run()
{
    /*
     * Setup a session, would typically be done once at application startup.
     */
    dbo::backend::Sqlite3 sqlite3("blog.db");
    dbo::Session session;
    session.setConnection(sqlite3);

    ...
----

The +{doc}classWt_1_1Dbo_1_1Session.html[Session]+ object is a long
living object that provides access to our database objects. You will
typically create a Session object for the entire lifetime of an
application session, and one per user. None of the
+{doc}group__dbo.html[Wt::Dbo]+ classes are thread safe (except for
the connection pools), and session objects are not shared between
sessions.

The lack of thread-safety is not simply a consequence of laziness on
our part. It coincides with the promises made by transactional
integrity on the database: you will not want to see the changes made
by one session in another session while its transaction has not been
committed (Read-Committed transaction isolation level). It might make
sense however to implement a copy-on-write strategy in the future, to
allow sharing of the bulk of database objects between sessions.

The session is given a connection which it may use to communicate with
the database. A session will use a connection only during a
transaction, and thus does not really need a dedicated
connection. When you are planning for multiple concurrent sessions, it
makes sense to use a connection pool instead, and a session may also
be initialized with a reference to a
{doc}classWt_1_1Dbo_1_1Session.html#a63ab17e16c9b721c94e6e9f67c5c255d[connection
pool].

+Wt::Dbo+ uses an abstraction layer for database access, and currently
supports {doc}classWt_1_1Dbo_1_1backend_1_1Postgres.html[Postgres]
and {doc}classWt_1_1Dbo_1_1backend_1_1Sqlite3.html[Sqlite3] as
backends.

.(tutorial1.C continued)
[source,cpp]
----
    ...

    session.mapClass<User>("user");

    /*
     * Try to create the schema (will fail if already exists).
     */
    session.createTables();

    ...
----

Next, we use
+{doc}classWt_1_1Dbo_1_1Session.html#a5886d450c052ae0ee15ab3c91e439229[mapClass()]+
to register each database class with the session, indicating the
database table onto which the class must be mapped.

Certainly during development, but also for initial deployment, it is
convenient to let +Wt::Dbo+ create or drop the database schema.

This generates the following SQL:

[source,sql]
----
begin transaction
create table "user" (
    "id" integer primary key autoincrement,
    "version" integer not null,
    "name" text not null,
    "password" text not null,
    "role" integer not null,
    "karma" integer not null
)
commit transaction
----

As you can see, next to the four columns that map to {cpp} fields, by
default, +Wt::Dbo+ adds another two columns: +id+ and +version+. The
id is a surrogate primary key, and version is used for version-based
optimistic locking. Since Wt 3.1.4, Wt::Dbo you can suppress the
version field, and provide natural keys of any type instead of the
surrogate primary key, see <<customizing,Customizing the mapping>>.

Finally, we can add a user to the database. All database operations
happen within a transaction.

.(tutorial1.C continued)
[source,cpp]
----
    ...
    /*
     * A unit of work happens always within a transaction.
     */
    dbo::Transaction transaction(session);

    User *user = new User();
    user->name = "Joe";
    user->password = "Secret";
    user->role = User::Visitor;
    user->karma = 13;

    dbo::ptr<User> userPtr = session.add(user);
}
----

A call to
{doc}classWt_1_1Dbo_1_1Session.html#a1ffa672cd86ff1ce6d59837b05081946[Session::add()]
adds an object to the database. This call returns a
+{doc}classWt_1_1Dbo_1_1ptr.html[ptr<Dbo>]+ to reference a database
object of type +_Dbo_+. This is a shared pointer which also keeps
track of the persistence state of the referenced object. Within each
session, a database object will be loaded at most once: the session
keeps track of loaded database objects and returns an existing object
whenever a query to the database requires this. When the last pointer
to a database object goes out of scope, the _transient_ (in-memory)
copy of the database object is also deleted (unless it was modified,
in which case the transient copy will only be be deleted after changes
have been successfully committed to the database).

The session also keeps track of objects that have been modified and
which need to be flushed (using SQL statements) to the
database. Flushing happens automatically when committing the
transaction, or whenever needed to maintain consistency between the
transient objects and the database copy (e.g. before doing a query).

The transaction commits automatically if the transaction object goes
out of scope. If however an exception is thrown, which unwinds the
stack and causes the transaction to go out of scope, then the
transaction will roll back instead.

This generates the following SQL:

[source,sql]
----
begin transaction
insert into "user" ("version", "name", "password", "role", "karma")
    values (?, ?, ?, ?, ?)
commit transaction
----

All SQL statements are prepared once (per connection) and reused
later, which has the benefit of avoiding SQL injection problems, and
allows potentially better performance.

== Querying objects

There are two ways of querying the database. Database objects of a
single +_Dbo_+ class can be queried using
+{doc}classWt_1_1Dbo_1_1Session.html#a637d1031ffddd4bd7bbb55a616192ac7[Session::find<Dbo>(_condition_)]+:

.(tutorial1.C continued)
[source,cpp]
----
dbo::ptr<User> joe = session.find<User>().where("name = ?").bind("Joe");

std::cerr << "Joe has karma: " << joe->karma << std::endl;
----

All queries use prepared statements with positional argument
binding. The +Session::find<T>()+ method returns a
+{doc}classWt_1_1Dbo_1_1Query.html[Query< ptr<T> >]+ object. The Query object
can be used to refine the search by defining Sql +where+, +order by+
and +group by+ definitions, and allows binding of parameters using
+{doc}classWt_1_1Dbo_1_1Query.html#abe3f72ee7e005c62e4428c399b57d6c5[Query::bind()]+. In
this case the query should expect a single result and is casted
directly to a database object pointer.

[NOTE]
===============================

Since Wt 3.1.3, the +Query+ class has a second parameter
_BindStrategy_ which has two possible values, corresponding two
different query implementations.

The default strategy is _DynamicBinding_ and allows the query to be a
long lived object associated with the session which may be run
multiple times. It also allows you to modify the query by changing
only the order or the limit/offsets.

An alternative strategy is _DirectBinding_ which passes bound
parameters directly on to an underlying prepared statement. This
corresponds to the old behavior of a Query object. Such a query can be
run only once, but has the benefit of having less ({cpp}) overhead
because the parameters values are directly passed on to the backend
instead of stored within the query object.

===============================

The query formulated to the database is:

[source,sql]
----
select id, version, "name", "password", "role", "karma"
    from "user"
    where (name = ?)
----

The more general way for querying uses
+{doc}classWt_1_1Dbo_1_1Session.html#a8712ff0d59f7bb6a4d2986ad9637cc9e[Session::query<Result>(_sql_)]+,
which supports not only database objects as results. The query of
above is equivalent to:

.(tutorial1.C continued)
[source,cpp]
----
dbo::ptr<User> joe2 = session.query< dbo::ptr<User> >("select u from user u")
    .where("name = ?").bind("Joe");
----

And this generates similar SQL:

[source,sql]
----
select u.id, u.version, u."name", u."password", u."role", u."karma"
    from user u
    where (name = ?)
----

The +_sql_+ statement passed to the method may be arbitrary sql which
returns results that are compatible with the +_Result_+ type. The
+_select_+ part of the SQL query may be rewritten (as in the example
above) to return the individual fields of a queried database object.

To illustrate that +Session::query<Result>()+ may be used to return
other types, consider the query below where an +int+ result is
returned.

.(tutorial1.C continued)
[source,cpp]
----
int count = session.query<int>("select count(1) from user")
    .where("name = ?").bind("Joe");
----

The queries above were expecting unique results, but queries can also
have multiple results. A +Session::query<Result>()+ may therefore in
general return a +dbo::collection< _Result_ >+ (for multiple results)
and in the examples above they were coerced to a single unique
+_Result_+ for convenience. Similarly, +Session::find<Dbo>()+ may
return a +collection< ptr<Dbo> >+ or a unique +_ptr<Dbo>+. If a
unique result is asked, but the query found multiple results, a
+{doc}classWt_1_1Dbo_1_1NoUniqueResultException.html[NoUniqueResultException]+
will be thrown.

+{doc}classWt_1_1Dbo_1_1collection.html[collection<T>]+ is an
STL-compatible collection which has iterators that implement the
+InputIterator+ requirements. Thus, you can only iterate through the
results of a collection once. After the results have been iterated the
+collection+ can no longer be used (but the +Query+ object can be
reused unless a _DirectBinding_ bind strategy was used).

The following code shows how you may multiple results of a query may
be iterated:

.(tutorial1.C continued)
[source,cpp]
----
typedef dbo::collection< dbo::ptr<User> > Users;

Users users = session.find<User>();

std::cerr << "We have " << users.size() << " users:" << std::endl;

for (Users::const_iterator i = users.begin(); i != users.end(); ++i)
    std::cerr << " user " << (*i)->name
              << " with karma of " << (*i)->karma << std::endl;
----

This code will perform two database queries: one for the call to
+collection::size()+ and one for iterating the results:

[source,sql]
----
select count(1) from "user" 
select id, version, "name", "password", "role", "karma" from "user"
----

[WARNING]
===============================
A query uses a prepared statement to execute, and prepares a new
statement if no statement was yet prepared for that query. Because a
prepared statement is usually not reentrant and at the same time a
query will use an existing statement if one exists, you need to be
careful to not have two collections with the same statement busy at
the same time. Thus while iterating the results of a query you cannot
use that same query again. Therefore it may be necessary to copy the
results into a standard container (such as +std::vector+) before
iterating them. Since Wt 3.1.3, concurrent use will be detected and
an exception will be thrown saying:

 A collection for '...' is already in use. Reentrant statement use is
 not yet implemented.

We plan to remove this restriction in later versions, cloning
prepared statements as necessary.
===============================

== Updating objects

Unlike most other smart pointers, +ptr<Dbo>+ is read-only by
default: it returns a +const _Dbo_*+. To modify a database object, you
need to call the +{doc}classWt_1_1Dbo_1_1ptr.html#a8f9f4ec6ed2bd8febe8b62525c9576da[ptr::modify()]+ method, which returns a non-const
object. This mark the object as dirty and the modifications will later
be synchronized to the database.

.(tutorial1.C continued)
[source,cpp]
----
dbo::ptr<User> joe = session.find<User>().where("name = ?").bind("Joe");    

joe.modify()->karma++;
joe.modify()->password = "public";
----

Database synchronization does not happen instantaneously, instead,
they are delayed until explicitly asked, using
+{doc}classWt_1_1Dbo_1_1ptr.html#aaf91f5ef8bcdabfafcd9abb4182625bd[ptr<Dbo>::flush()]+
or
+{doc}classWt_1_1Dbo_1_1Session.html#ab896d119f1e0fb79adffe2282b92ef17[Session::flush()]+,
until a query is executed whose results may be affected by the changes
made, or until the transaction is committed.

The previous code will generate the following SQL:

[source,sql]
----
select id, version, "name", "password", "role", "karma"
    from "user"
    where (name = ?)
update "user"
    set "version" = ?, "name" = ?, "password" = ?, "role" = ?, "karma" = ?
    where "id" = ? and "version" = ?
----

We already saw how using +Session::add(ptr<Dbo>)+, we added a new
object to the database. The opposite operation is
+{doc}classWt_1_1Dbo_1_1ptr.html#af4b26afebd56abc42005ef9f954d8fee[ptr<Dbo>::remove()]+: it deletes the object in the database.

.(tutorial1.C continued)
[source,cpp]
----
dbo::ptr<User> joe = session.find<User>().where("name = ?").bind("Joe");    

joe.remove();
----

After removing an object, the transient object can still be used, and
can even be re-added to the database.

[NOTE]
===============================

Like +modify()+, also the +add()+ and +remove()+ operations defer
synchronization with the database, and therefore the following code
does not actually have any effect on the database:

.(tutorial1.C continued)
[source,cpp]
----
dbo::ptr<User> silly = session.add(new User());
silly.modify()->name = "Silly";
silly.remove();
----
===============================

== Mapping relations

=== _Many-to-One_ relations

Let's add posts to our blogging example, and define a Man-to-One
relation between posts and users. In the code below, we limit
ourselves to the statements important for defining the relationship.

.Many-to-One relation (tutorial2.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>
#include <string>

namespace dbo = Wt::Dbo;

class User;

class Post {
public:
    ...

    dbo::ptr<User> user;

    template<class Action>
    void persist(Action& a)
    {
        ... 

        dbo::belongsTo(a, user, "user");
    }
};

class User {
public:
    ...

    dbo::collection< dbo::ptr<Post> > posts;

    template<class Action>
    void persist(Action& a)
    {
        ...

        dbo::hasMany(a, posts, dbo::ManyToOne, "user");
    }
};
----

At the _Many_-side, we add a reference to a user, and in the
+persist()+ method we call
+{doc}group__dbo.html#gaf1a3f4231d2064b86eb3903003527ddd[belongsTo()]+. This
allows us to reference the user to which this post belongs. The last
argument will correspond to the name of the database column which
defines the relationship.

At the _One_-side, we add a collection of posts, and in the
+persist()+ method we call
+{doc}group__dbo.html#ga1a086b583fb150dbd4c5b4ba92bc177f[hasMany()]+. The
join field must be the same name as in reciproce belongsTo() method
call.

If we add the Post class too to our session using
+Session::mapClass()+, and create the schema, the following SQL is
generated:

[source,sql]
----
create table "user" (
    ...

    -- table user is unaffected by the relationship
);

create table "post" (
    ...

    "user_id" bigint,
    constraint "fk_post_user" foreign key ("user_id") references "user" ("id")
)
----

Note the +user_id+ field which corresponds to the join name ``user''.

At the _Many_-side, you may read or write the +ptr+ to set a user to
which this post belongs.

The collection at the _One_-side allows us to retrieve all associated
elements, and also insert() and remove() elements, which has the same
effect as setting the +ptr+ on the _Many_-side.

Example:

.(tutorial2.C continued)
[source,cpp]
----
dbo::ptr<Post> post = session.add(new Post());
post.modify()->user = joe; // or joe.modify()->posts.insert(post);

// will print 'Joe has 1 post(s).'
std::cerr << "Joe has " << joe->posts.size() << " post(s)." << std::endl;
----

As you can see, as soon as _joe_ is set as _user_ for the new post, the
post is reflected in the _posts_ collection of _joe_, and vice-versa.

[WARNING]
===============================
The collection uses a prepared statement to execute. Collections will
try to share a single prepared statement, but prepared statements are
usually not reentrant. As a result, you need to be careful to not have
two collections with the same statement busy at the same time. Thus
while iterating a collection, you need to be sure you will not
reentrantly iterate the same collection (of the same or another
object). Therefore it may be necessary to copy the results into a
standard container (such as +std::vector+) before iterating them.

We plan to remove this restriction in later versions, cloning
prepared statements as necessary.
===============================

=== _Many-to-Many_ relations

To illustrate _Many-to-Many_ relations, we will add tags to our
blogging example, and define an _Many-to-Many_ relation between posts
and tags. In the code below, we again limit ourselves to the
statements important for defining the relationship.

.Many-to-Many relation (tutorial2.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>
#include <string>

namespace dbo = Wt::Dbo;

class Tag;

class Post {
public:
    ...

    dbo::collection< dbo::ptr<Tag> > tags;

    template<class Action>
    void persist(Action& a)
    {
        ...

        dbo::hasMany(a, tags, dbo::ManyToMany, "post_tags");
    }
};

class Tag {
public:
    ...

    dbo::collection< dbo::ptr<Post> > posts;

    template<class Action>
    void persist(Action& a)
    {
        ...

        dbo::hasMany(a, posts, dbo::ManyToMany, "post_tags");
    }
};
----

As expected, the relationship is reflected in almost the same way in
both classes: they both have a +collection+ of database objects of the
related class, and in the +persist()+ method we call +hasMany()+. The
join field in this case will correspond to the name of a join-table
used to persist the relation.

Adding the Post class to our session using +Session::mapClass()+, we
now get the following SQL for creating the schema:

[source,sql]
----
create table "post" (
    ...

    -- table post is unaffected by the relationship
)

create table "tag" (
    ...

    -- table tag is unaffected by the relationship
)

create table "post_tags" (
    "post_id" bigint not null,
    "tag_id" bigint not null,
    primary key ("post_id", "tag_id"),
    constraint "fk_post_tags_key1" foreign key ("post_id")
        references "post" ("id"),
    constraint "fk_post_tags_key2" foreign key ("tag_id")
        references "tag" ("id")
)

create index "post_tags_post" on "post_tags" ("post_id")
create index "post_tags_tag" on "post_tags" ("tag_id")
----

The collection at either side of the _Many-to-Many_ relation allows us
to retrieve all associated elements. Unlike a collection in a
_Many-to-One_ relation however, we may now also
+{doc}classWt_1_1Dbo_1_1collection.html#7b497add0d6ac2b1e098820f9ee64c93[insert()]+
and
+{doc}classWt_1_1Dbo_1_1collection.html#35d046e991b3fec59af85d501fd49e51[erase()]+
items from the collection. To define a relation between a post and a
tag, you need to add the post to the tag's _posts_ collection, or the
tag to the post's _tags_ collection. You may not do both! The change
will automatically be reflected in the reciproce collection. Likewise,
to undo the relation between a post and a tag, you should remove the
tag from the post's _tags_ collection, or the post from the tag's
_posts_ collection, but not both.

Example:

.(tutorial2.C continued)
[source,cpp]
----
dbo::ptr<Post> post = ...
dbo::ptr<Tag> cooking = session.add(new Tag());
cooking.modify()->name = "Cooking";

post.modify()->tags.insert(cooking);

// will print '1 post(s) tagged with Cooking.'
std::cerr << cooking->posts.size() << " post(s) tagged with Cooking."
          << std::endl;
----

[WARNING]
===============================
The same warning as above applies here as well.
===============================

=== _One-to-One_ relations

_One-to-One_ relations are currently not supported, but can be
simulated using _Many-to-One_ relations as they have the same database
schema structure.

[[customizing]]
== Customizing the mapping

By default, +Wt::Dbo+ will add an auto-incrementing surrogate primary
(+id+) key and a version field (+version+) to each mapped table.

While these defaults make sense for a new project, you can tailor the
mapping so that you can map to virtually any existing database schema.

=== Changing or disabling the surrogate primary key "id" field

To change the field name used for the surrogate primary key for a
mapped class, or to disable the surrogate primary key for a class and use a nautral key instead, you need to specialize
+{doc}structWt_1_1Dbo_1_1dbo__traits.html[Wt::Dbo::dbo_traits<C>]+.

For example, the code below changes the primary key field for class
Post from +id+ to +post_id+:

.Changing the "id" field name (tutorial3.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>

namespace dbo = Wt::Dbo;

class Post {
public:
  ...
};

namespace Wt {
    namespace Dbo {

        template<>
        struct dbo_traits<Post> : public dbo_default_traits {
            static const char *surrogateIdField() {
                return "post_id";
            }
        };

    }
}
----

=== Changing or disabling the "version" field

To change the field name used for the optimistic concurrency control
version field (+version+), or to disable optimistic concurrency
control for a class alltoghether, you need to specialize
+{doc}structWt_1_1Dbo_1_1dbo__traits.html[Wt::Dbo::dbo_traits<C>]+.

For example, the code below disables optimistic concurrency control
for class Post:

.Disabling the "version" field name (tutorial4.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>

namespace dbo = Wt::Dbo;

class Post {
public:
    ...
};

namespace Wt {
    namespace Dbo {

        template<>
        struct dbo_traits<Post> : public dbo_default_traits {
            static const char *versionField() {
                return 0;
            }
        };

    }
}
----

=== Specifying a natural primary key

Instead of using a auto-incrementing surrogate primary key, you may
want to use a different primary key.

For example, the code below changes the primary key for the User table
to a string (his username) which maps onto a +varchar (20)+ field
+user_name+:

.Using a natural key (tutorial5.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>

namespace dbo = Wt::Dbo;

class User {
public:
    std::string userId;

    template<class Action>
    void persist(Action& a)
    {
        dbo::id(a, userId, "user_id", 20);
    }
};

namespace Wt {
    namespace Dbo {

        template<>
        struct dbo_traits<User> : public dbo_default_traits {
            typedef std::string IdType;

            static IdType invalidId() {
                return std::string();
            }

            static const char *surrogateIdField() { return 0; }
        };

    }
}
----

The +id()+ function has the same syntax as the +field()+ function.

A natural primary key may also be a composite key, a foreign key or
a combination.

=== Specifying a composite natural primary key

To use a composite type as a natural primary key, i.e. a type which
consists of more than one field, you need to have a corresponding C++
type.

The type has a number of basic requirements, such as default
constructor, comparison operators (== and <), and a streaming operator.

.Using a composite natural primary key (tutorial6.C)
[source,cpp]
----
struct Coordinate {
    int x, y;

    Coordinate()
        : x(-1), y(-1) { }

    Coordinate(int an_x, int an_y)
        : x(an_x), y(an_y) { }

    bool operator== (const Coordinate& other) const {
        return x == other.x && y == other.y;
    }

    bool operator< (const Coordinate& other) const {
        if (x < other.x)
            return true;
        else if (x == other.x)
            return y < other.y;
        else
            return false;
    }
};

std::ostream& operator<< (std::ostream& o, const Coordinate& c)
{
    return o << "(" << c.x << ", " << c.y << ")";
}
----

Next, you must indicate how the type is persisted, by overloading Dbo's
+field()+ function for it.

.(tutorial6.C continued)
[source,cpp]
----
namespace Wt {
    namespace Dbo {

        template <class Action>
        void field(Action& action, Coordinate& coordinate,
                   const std::string& name, int size = -1)
        {
            field(action, coordinate.x, name + "_x");
            field(action, coordinate.y, name + "_y");
        }
    }
}
----

With this in place, we can use the +Coordinate+ type as a natural primary
key type:

.(tutorial6.C continued)
[source,cpp]
----
class GeoTag;

namespace Wt {
    namespace Dbo {

         template<>
         struct dbo_traits<GeoTag> : public dbo_default_traits
         {
             typedef Coordinate IdType;
             static IdType invalidId() { return Coordinate(); }
             static const char *surrogateIdField() { return 0; }
         };
    }
}

class GeoTag {
public:
     Coordinate  position;
     std::string name;

     template <class Action>
     void persist(Action& a)
     {
          dbo::id(a, position, "position");
          dbo::field(a, name, "name");
     }
};
----

Note that the composite key may also include foreign keys, by storing
ptr<> objects in the composite, which you map using a +belongsTo()+
declaration. See +tutorial8.C+ for a complete example.

=== Specifying foreign key constraints

The +belongsTo()+ function is overloaded so that you can add foreign
key constraints which are enforced by the database, such as:

* +NotNull+: cannot be null
* +OnUpdateCascade+: cascade an update of the (natural) primary key to the
  foreign keys that reference it
* +OnUpdateSetNull+: an update of the (natural) primary key sets referencing
  foreign keys to null
* +OnDeleteCascade+: cascade a delete of the object to also delete objects
  that reference it using a foreign key
* +OnDeleteSetNull+: when the object is deleted, set the referencing foreign
  keys to null.

In the next chapter we will see how you can specify these foreign key
constraints also for foreign keys that double as primary key.

=== Specifying a natural primary key that is also a foreign key

Let's define a class UserInfo which provides additional data for a
User. We will only allow exactly one UserInfo object per User, and
therefore chose as primary key for the UserInfo a reference to the
User.

.Using a foreign key as primary key (tutorial7.C)
[source,cpp]
----
#include <Wt/Dbo/Dbo>
#include <Wt/Dbo/backend/Sqlite3>

namespace dbo = Wt::Dbo;

class UserInfo;
class User;

namespace Wt {
    namespace Dbo {

        template<>
        struct dbo_traits<UserInfo> : public dbo_default_traits {
            typedef ptr<User> IdType;

            static IdType invalidId() {
                return ptr<User>();
            }

            static const char *surrogateIdField() { return 0; }
        };

    }
}

class User
{
public:
    std::string name;

    dbo::collection< dbo::ptr<UserInfo> > infos;

    template<class Action>
    void persist(Action& a)
    {
         dbo::field(a, name,     "name");

         // In fact, this is really constrained to hasOne() ...
         dbo::hasMany(a, infos, dbo::ManyToOne, "user");
    }
};

class UserInfo
{
public:
    dbo::ptr<User> user;
    std::string info;

    template<class Action>
    void persist(Action& a)
    {
        dbo::id(a, user, "user", dbo::OnDeleteCascade);
        dbo::field(a, info, "info");
    }
};

void run()
{
    /*
     * Setup a session, would typically be done once at application startup.
     */
    dbo::backend::Sqlite3 sqlite3(":memory:");
    sqlite3.setProperty("show-queries", "true");
    dbo::Session session;
    session.setConnection(sqlite3);

    session.mapClass<User>("user");
    session.mapClass<UserInfo>("user_info");

    /*
     * Try to create the schema (will fail if already exists).
     */
    session.createTables();

    dbo::Transaction transaction(session);

    {
        User *user = new User();
        user->name = "Joe";

        dbo::ptr<User> userPtr = session.add(user);

        UserInfo *userInfo = new UserInfo();
        userInfo->user = userPtr;
        userInfo->info = "great guy";

        session.add(userInfo);
    }

    {
        dbo::Transaction transaction(session);

        dbo::ptr<UserInfo> info = session.find<UserInfo>();
    
        std::cerr << info->user->name << " is a " << info->info << std::endl;
    }
}

int main(int argc, char **argv)
{
    run();
}
----

As you can see, in this example we would really need a One-to-One
relationship, but this currently not yet supported in Dbo and thus we
emulate it using a Many-to-One relationship (which has the same
representation in SQL).

When run, this should output:

[source,sql]
----
begin transaction
create table "user" (
    "id" integer primary key autoincrement,
    "version" integer not null,
    "name" text not null
)

create table "user_info" (
    "version" integer not null,
    "user_id" bigint,
    "info" text not null,
    primary key ("user_id"),
    constraint "fk_user_info_user" foreign key ("user_id")
        references "user" ("id") on delete cascade
)

commit transaction
begin transaction
insert into "user" ("version", "name") values (?, ?)
insert into "user_info" ("version", "user_id", "info") values (?, ?, ?)
commit transaction
begin transaction
select version, "user_id", "info" from "user_info" 
select "version", "name" from "user" where "id" = ?
Joe is a great guy
commit transaction
----

== Transactions and concurrency

Reading data from the database or flushing changes to the database
require an active transaction. A
+{doc}classWt_1_1Dbo_1_1Transaction.html[Transaction]+ is a RIIA
(Resource-Initialization-is-Acquisition) class which at the same time
provides isolation between concurrent sessions and atomicity for
persisting changes to the database.

The library implements optimistic locking, which allows detection
(rather than avoidance) of concurrent modifications. It is a
recommended and widely used strategy for dealing with concurrency
issues in a scalable manner as no write locks are needed on the
database. To detect a concurrent modification, a +version+ field is
added to each table which is incremented on each modification. When
performing a modification (such as updating or removing an object), it
is checked that the version of the record in the database is the same
as the version of the object that was originally read from the
database.

.Transaction isolation levels
[NOTE]
The minimum level of isolation which is required for the library's
_optimistic locking_ strategy is _Read Committed_: modifications in a
transaction are only visible to other sessions as soon as they are
committed. This is usually the lowest level of isolation supported by
a database.

The +Transaction+ class is a light-weight proxy that references a
_logical_ transaction: multiple (usually nested) Transaction objects
may be instantiated simultaneously, which each need to be committed
for the logical transaction to be committed. In this way you can
easily protect individual methods which require database access with
such a transaction object, which will automatically participate in a
wider transaction if that is available. A transaction will in fact
defer opening a real transaction in the database until needed, and
thus there is no penalty for instantiating a transaction to make sure
a unit of work is atomic, even if you are not yet sure that there will
be actual work done. Note that there is no need (sinds Wt 3.2.1) to
explicitly commit a transaction: a transaction will automatically
commited when it goes out of scope, unless the transaction goes out of
scope (and thus its destructor is called) while an exception is being
thrown.

Transactions may fail and dealing with failing transactions is an
integral aspect of their usage. When the library detects a concurrent
modification, a
+{doc}classWt_1_1Dbo_1_1StaleObjectException.html[StaleObjectException]+
is thrown. Other exceptions may be thrown, including exceptions in the
backend driver when for example the database schema is not compatible
with the mapping. There may also be problems detected by the business
logic which may raise an exception and cause the transaction to be
rolled back. When a transaction is rolled back, the modified database
objects are not successfully synchronized with the database, but may
possibly be synchronized later in a new transaction.

Obviously, many exceptions will be fatal. One notable exception is the
+StaleObjectException+ however. Different strategies are possible to
deal with this exception. Regardless of the approach, you will at
least need to
+{doc}classWt_1_1Dbo_1_1ptr.html#abb1db71ef910748437d69bf11a04eb6e[reread()]+
the stale database object(s) before being able to commit changes made
in a new transaction.

== Installation

+Wt::Dbo+ is included in Wt, and can thus be installed as part of this
library for which there may be standard packages availabe for your
operating system.

The library does however in no way depend on Wt, and can also be
built, installed and used separately from it. Starting from a Wt
source package (and on in a UNIX-like environment), you would do the
following to build and install only +Wt::Dbo+:

.Installing +Wt::Dbo+ from source (UNIX-like)
[source,sh]
----
$ cd wt-xxx
$ mkdir build
$ cd build
$ cmake ../ # extra options may be needed, see instructions
$ cd src/Wt/Dbo
$ make
$ sudo make install
----

See also the
http://www.webtoolkit.eu/wt/doc/reference/html/InstallationUnix.html[Wt
installation instructions].