From: Mike Bayer Date: Sun, 2 Jul 2006 16:34:03 +0000 (+0000) Subject: fixed hyperlink to adv datamapping X-Git-Tag: rel_0_2_5~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=433f20d631085cf0e14348b4055e45db080b630f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fixed hyperlink to adv datamapping --- diff --git a/doc/build/content/tutorial.txt b/doc/build/content/tutorial.txt index 44c5c2db15..80f2d44722 100644 --- a/doc/build/content/tutorial.txt +++ b/doc/build/content/tutorial.txt @@ -357,7 +357,7 @@ At the moment, nothing has been saved to the database; all of our changes are in With the identity map, a single `Session` can be relied upon to keep all loaded instances straight. -As far as the issue of the same object being modified in two different Sessions, that's an issue of concurrency detection; SQLAlchemy does some basic concurrency checks when saving objects, with the option for a stronger check using version ids. See [adv_datamapping](rel:adv_datamapping) for more details. +As far as the issue of the same object being modified in two different Sessions, that's an issue of concurrency detection; SQLAlchemy does some basic concurrency checks when saving objects, with the option for a stronger check using version ids. See [advdatamapping_arguments](rel:advdatamapping_arguments) for more details. ### Saving {@name=saving}