From: Mike Bayer Date: Thu, 20 Oct 2022 17:08:52 +0000 (-0400) Subject: doc link fixes X-Git-Tag: rel_2_0_0b2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b029290e1e7f6911a5fb4deb04bc619d7cea0b64;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git doc link fixes Change-Id: I7f5f6b8070c01066a64f23542f644ad67db70d38 --- diff --git a/doc/build/changelog/unreleased_20/8661.rst b/doc/build/changelog/unreleased_20/8661.rst index 80dcc5ee4e..6b44e19286 100644 --- a/doc/build/changelog/unreleased_20/8661.rst +++ b/doc/build/changelog/unreleased_20/8661.rst @@ -9,5 +9,5 @@ despite the fact that VARCHAR can handle unlimited characters. Additional pyodbc-specific typing information is now passed to ``setinputsizes()`` when the datatype's size is > 2000 characters. The change is also applied - to the :class:`.JSON` type which was also impacted by this issue for large + to the :class:`_types.JSON` type which was also impacted by this issue for large JSON serializations. diff --git a/doc/build/core/defaults.rst b/doc/build/core/defaults.rst index 0989d742fe..848b32b17c 100644 --- a/doc/build/core/defaults.rst +++ b/doc/build/core/defaults.rst @@ -405,7 +405,7 @@ table will include: :paramref:`.MetaData.schema` setting on the :class:`.MetaData` in use; see :ref:`sequence_metadata` for background. -When :class:`.Insert` DML constructs are invoked against the ``cartitems`` +When :class:`_dml.Insert` DML constructs are invoked against the ``cartitems`` table, without an explicit value passed for the ``cart_id`` column, the ``cart_id_seq`` sequence will be used to generate a value on participating backends. Typically, the sequence function is embedded in the INSERT statement, @@ -418,7 +418,7 @@ returned to the Python process: VALUES (next_val(cart_id_seq), 'some description', '2015-10-15 12:00:15') RETURNING cart_id -When using :meth:`.Connection.execute` to invoke an :class:`.Insert` construct, +When using :meth:`.Connection.execute` to invoke an :class:`_dml.Insert` construct, newly generated primary key identifiers, including but not limited to those generated using :class:`.Sequence`, are available from the :class:`.CursorResult` construct using the :attr:`.CursorResult.inserted_primary_key` attribute.