:tickets: 12711
Extended :class:`_oracle.VECTOR` to support sparse vectors. This update
- introduces :class:_oracle.VectorStorageType to specify sparse or dense
+ introduces :class:`_oracle.VectorStorageType` to specify sparse or dense
storage and added :class:`_oracle.SparseVector`. Pull request courtesy
Suraj Shaw.
wide using the :paramref:`.create_engine.isolation_level` so that pooled
connections are permanently set in autocommit mode. The SQLAlchemy connection
pool as well as the :class:`.Connection` will still seek to invoke the DBAPI
-``.rollback()`` method upon connection :term:`reset`, as their behavior
+``.rollback()`` method upon connection :term:`release`, as their behavior
remains agonstic of the isolation level that's configured on the connection.
As this rollback still incurs a network round trip under most if not all
DBAPI drivers, this additional network trip may be disabled using the
"""the isolation that is implicitly present on new connections"""
skip_autocommit_rollback: bool
- """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback
+ """Whether or not the :paramref:`.create_engine.skip_autocommit_rollback`
parameter was set.
.. versionadded:: 2.0.43
)
def apply_to_insert(self, insert_stmt: Insert) -> None:
- """Apply this :class:`.SyntaxExtension` to an
- :class:`_sql.Insert`"""
+ """Apply this :class:`.SyntaxExtension` to an :class:`_sql.Insert`"""
raise NotImplementedError(
f"Extension {type(self).__name__} cannot be applied to insert"
)