From: Mike Bayer Date: Sat, 26 Aug 2006 20:16:19 +0000 (+0000) Subject: doc bug [ticket:278] X-Git-Tag: rel_0_2_8~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad8b3c63e00960bb5a27752ae3f8ad4669f703a6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git doc bug [ticket:278] --- diff --git a/doc/build/content/dbengine.txt b/doc/build/content/dbengine.txt index d8dec80c0f..a68b94de58 100644 --- a/doc/build/content/dbengine.txt +++ b/doc/build/content/dbengine.txt @@ -167,7 +167,7 @@ Both `Connection` and `Engine` fulfill an interface known as `Connectable` which #### Implicit Connection Contexts {@name=context} -An **implicit connection** refers to connections that are allocated by the `Engine` internally. There are two general cases when this occurs: when using the various `execute()` methods that are available off the `Engine` object itself, and when calling the `execute()` method on constructed SQL objects, which are described in [sqlconstruction](rel:sqlconstruction). +An **implicit connection** refers to connections that are allocated by the `Engine` internally. There are two general cases when this occurs: when using the various `execute()` methods that are available off the `Engine` object itself, and when calling the `execute()` method on constructed SQL objects, which are described in [sql](rel:sql). {python title="Implicit Connection"} engine = create_engine('sqlite:///:memory:')