]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
sentence clarify
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Apr 2007 14:56:53 +0000 (14:56 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Apr 2007 14:56:53 +0000 (14:56 +0000)
doc/build/content/metadata.txt

index 38785f3c50e297ef04cb4b85bd85f3f53f0d1ae5..054dbdde8052d4455bd2253c3f827b2fd0223bd6 100644 (file)
@@ -132,7 +132,7 @@ To bind `MetaData` to a single `Engine`, use `BoundMetaData`:
     # create the Engine and MetaData in one step
     meta = BoundMetaData('postgres://db/', **kwargs)
     
-Another form of `MetaData` exists which allows connecting to any number of engines, within the context of the current thread.  This is `DynamicMetaData`:
+Another form of `MetaData` exists which can connect to an engine within the context of the current thread only, allowing different engines to be connected within other concurrent threads.  This is `DynamicMetaData`:
 
     {python}
     meta = DynamicMetaData()
@@ -141,7 +141,7 @@ Another form of `MetaData` exists which allows connecting to any number of engin
     
     meta.connect('mysql://user@host/dsn')   # create a new Engine and connect
 
-`DynamicMetaData` is ideal for applications that need to use the same set of `Tables` for many different database connections in the same process, such as a CherryPy web application which handles multiple application instances in one process.
+`DynamicMetaData` is intended for applications that need to use the same set of `Tables` for many different database connections in the same process, such as a CherryPy web application which handles multiple application instances in one process.
 
 #### Using the global Metadata object