From a8a4f6a5c6f3b7ef5c7b8102ad8604e8fb764cf4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 23 Sep 2010 13:38:19 +0200 Subject: Minor fixes --- doc/manual.xhtml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc') diff --git a/doc/manual.xhtml b/doc/manual.xhtml index 37523854..ff2255e 100644 --- a/doc/manual.xhtml +++ b/doc/manual.xhtml @@ -419,7 +419,7 @@

The ODB Query Language is an object-oriented database query language that can be used to search for objects matching - a certain criteria. It is modeled after and is integrated into + certain criteria. It is modeled after and is integrated into C++ allowing you to write expressive and safe queries that look and feel like ordinary C++.

@@ -528,7 +528,7 @@ support code, as well as compile and run our application. We will also learn how to make objects persistent, load, update and delete persistent objects, as well as query the database - for persistent objects that match a certain criteria.

+ for persistent objects that match certain criteria.

The code presented in this chapter is based on the hello example which can be found in the @@ -994,7 +994,7 @@ mysql> quit

In the next section we will examine how to query the database - for persistent objects matching a certain criteria.

+ for persistent objects matching certain criteria.

2.4 Querying Database for Objects

@@ -1867,7 +1867,7 @@ t.commit (); returns false.

If we don't know an object's identifier, then we can use queries to - find the object (or objects) matching some other criteria (@@ ref + find the object (or objects) matching some criteria (@@ ref query). Note, however, that loading an object's state using its identifier can be significantly faster that doing a query.

@@ -2091,7 +2091,7 @@ namespace odb

If you don't know the identifiers of the objects that you are looking for, you can use queries to search the database for objects matching - a certain criteria. ODB provides flexible and powerful query support + certain criteria. ODB provides flexible and powerful query support that offers two distinct levels of abstraction from the database system query language such as SQL.

-- cgit v1.1