diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-14 16:39:42 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-14 16:39:42 -0400 |
| commit | 447c0750e1f739c4db1d0d20de182c297dc86e36 (patch) | |
| tree | f3fc94e0871fb34205fc5695f82d882bea554839 /doc/build/errors.rst | |
| parent | d9b230e78c70c17a6856f4ff3b8380b9ce510702 (diff) | |
| download | sqlalchemy-447c0750e1f739c4db1d0d20de182c297dc86e36.tar.gz | |
Set up absolute references for create_engine and related
includes more replacements for create_engine(), Connection,
disambiguation of Result from future/baked
Change-Id: Icb60a79ee7a6c45ea9056c211ffd1be110da3b5e
Diffstat (limited to 'doc/build/errors.rst')
| -rw-r--r-- | doc/build/errors.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/build/errors.rst b/doc/build/errors.rst index 107bc3c25..599b91e26 100644 --- a/doc/build/errors.rst +++ b/doc/build/errors.rst @@ -123,13 +123,13 @@ familiar with. In order to allow for a higher number of connections be in use at once, the pool can be adjusted using the - :paramref:`.create_engine.pool_size` and :paramref:`.create_engine.max_overflow` - parameters as passed to the :func:`.create_engine` function. The timeout + :paramref:`_sa.create_engine.pool_size` and :paramref:`_sa.create_engine.max_overflow` + parameters as passed to the :func:`_sa.create_engine` function. The timeout to wait for a connection to be available is configured using the - :paramref:`.create_engine.pool_timeout` parameter. + :paramref:`_sa.create_engine.pool_timeout` parameter. * The pool can be configured to have unlimited overflow by setting - :paramref:`.create_engine.max_overflow` to the value "-1". With this setting, + :paramref:`_sa.create_engine.max_overflow` to the value "-1". With this setting, the pool will still maintain a fixed pool of connections, however it will never block upon a new connection being requested; it will instead unconditionally make a new connection if none are available. |
