diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index 1c3cdd9f4cffd..4e331df9749be 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -5486,11 +5486,8 @@ included in Python's standard library by default. You can find an overview of supported drivers for each SQL dialect in the `SQLAlchemy docs `__. -If SQLAlchemy is not installed, a fallback is only provided for sqlite (and -for mysql for backwards compatibility, but this is deprecated and will be -removed in a future version). -This mode requires a Python database adapter which respect the `Python -DB-API `__. +If SQLAlchemy is not installed, you can use a :class:`sqlite3.Connection` in place of +a SQLAlchemy engine, connection, or URI string. See also some :ref:`cookbook examples ` for some advanced strategies.