summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/psycopg2.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-06-07 17:02:20 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-06-07 17:02:20 +0000
commitc0736e0b2a3bf8c0952db84f5b9943df9ebf18f7 (patch)
tree9745c189c2d954759dfc88610f1d1de62efe7247 /lib/sqlalchemy/dialects/postgresql/psycopg2.py
parent938c5d1033085289b4cbbd4b9229eaa3ad90b66d (diff)
parent1c99edf1b988f55411bd8bef917b9664a39d218b (diff)
downloadsqlalchemy-c0736e0b2a3bf8c0952db84f5b9943df9ebf18f7.tar.gz
Merge "migrate labels to new tutorial" into main
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/psycopg2.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/psycopg2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
index 3f4ee2a20..7488e431d 100644
--- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py
+++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
@@ -205,7 +205,7 @@ performance, primarily with INSERT statements, by multiple orders of magnitude.
SQLAlchemy internally makes use of these extensions for ``executemany()`` style
calls, which correspond to lists of parameters being passed to
:meth:`_engine.Connection.execute` as detailed in :ref:`multiple parameter
-sets <execute_multiple>`. The ORM also uses this mode internally whenever
+sets <tutorial_multiple_parameters>`. The ORM also uses this mode internally whenever
possible.
The two available extensions on the psycopg2 side are the ``execute_values()``
@@ -281,7 +281,7 @@ size defaults to 100. These can be affected by passing new values to
.. seealso::
- :ref:`execute_multiple` - General information on using the
+ :ref:`tutorial_multiple_parameters` - General information on using the
:class:`_engine.Connection`
object to execute statements in such a way as to make
use of the DBAPI ``.executemany()`` method.