@@ -144,10 +144,10 @@ def execute(sql, con, cur=None, params=None):
144144 or DBAPI2 connection (fallback mode)
145145 Using SQLAlchemy makes it possible to use any DB supported by that
146146 library. Legacy support is provided for sqlite3.Connection objects.
147+
147148 Note: The user is responsible for engine disposal and connection
148149 closure for the SQLAlchemy connectable. See `EngineDisposal
149150 <https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
150-
151151 cur : deprecated, cursor is obtained from connection, default: None
152152 params : list or tuple, optional, default: None
153153 List of parameters to pass to execute method.
@@ -191,6 +191,7 @@ def read_sql_table(
191191 con : SQLAlchemy connectable or str
192192 A database URI could be provided as as str.
193193 SQLite DBAPI connection mode not supported.
194+
194195 Note: The user is responsible for engine disposal and connection
195196 closure for the SQLAlchemy connectable. See `EngineDisposal
196197 <https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
@@ -291,10 +292,10 @@ def read_sql_query(
291292 Using SQLAlchemy makes it possible to use any DB supported by
292293 that library. Legacy support is provided for sqlite3.Connection
293294 objects.
295+
294296 Note: The user is responsible for engine disposal and connection
295297 closure for the SQLAlchemy connectable. See `EngineDisposal
296298 <https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
297-
298299 index_col : string or list of strings, optional, default: None
299300 Column(s) to set as index(MultiIndex).
300301 coerce_float : boolean, default True
@@ -372,10 +373,10 @@ def read_sql(
372373 or DBAPI2 connection (fallback mode)
373374 Using SQLAlchemy makes it possible to use any DB supported by that
374375 library. Legacy support is provided for sqlite3.Connection objects.
376+
375377 Note: The user is responsible for engine disposal and connection
376378 closure for the SQLAlchemy connectable. See `EngineDisposal
377379 <https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
378-
379380 index_col : string or list of strings, optional, default: None
380381 Column(s) to set as index(MultiIndex).
381382 coerce_float : boolean, default True
@@ -476,10 +477,10 @@ def to_sql(
476477 Using SQLAlchemy makes it possible to use any DB supported by
477478 that library. Legacy support is provided for sqlite3.Connection
478479 objects.
480+
479481 Note: The user is responsible for engine disposal and connection
480482 closure for the SQLAlchemy connectable. See `EngineDisposal
481483 <https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
482-
483484 schema : string, default None
484485 Name of SQL schema in database to write to (if database flavor
485486 supports this). If None, use default schema (default).
0 commit comments