aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-23 16:53:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-23 16:53:05 +0200
commitae0daeea07f2b83f1c0c7e67dd3532bde9833320 (patch)
tree55499dd061c8521d9bb8b40727bb6169732b3d50
parenta31199bef7e30ae7e66292fbc71e77f71bfe1c40 (diff)
Clarify that only pointer-returning load()/find() cache
-rw-r--r--doc/manual.xhtml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/manual.xhtml b/doc/manual.xhtml
index 2787129..c1753d0 100644
--- a/doc/manual.xhtml
+++ b/doc/manual.xhtml
@@ -11487,8 +11487,9 @@ namespace odb
<p>A session is an object cache. Every time a session-enabled object is
made persistent by calling the <code>database::persist()</code> function
(<a href="#3.8">Section 3.8, "Making Objects Persistent"</a>), loaded
- by calling the <code>database::load()</code> or <code>database::find()</code>
- function (<a href="#3.9">Section 3.9, "Loading Persistent Objects"</a>),
+ by calling the <code>database::load()</code> or
+ <code>database::find()</code> function (the pointer-returning overloads
+ only; <a href="#3.9">Section 3.9, "Loading Persistent Objects"</a>),
or loaded by iterating over a query result (<a href="#4.4">Section 4.4,
"Query Result"</a>), the pointer to the persistent object, in the form
of the canonical object pointer (<a href="#3.3">Section 3.3, "Object