@@ -144,10 +144,10 @@ def execute(sql, con, cur=None, params=None):
144
144
or DBAPI2 connection (fallback mode)
145
145
Using SQLAlchemy makes it possible to use any DB supported by that
146
146
library. Legacy support is provided for sqlite3.Connection objects.
147
+
147
148
Note: The user is responsible for engine disposal and connection
148
149
closure for the SQLAlchemy connectable. See `EngineDisposal
149
150
<https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
150
-
151
151
cur : deprecated, cursor is obtained from connection, default: None
152
152
params : list or tuple, optional, default: None
153
153
List of parameters to pass to execute method.
@@ -191,6 +191,7 @@ def read_sql_table(
191
191
con : SQLAlchemy connectable or str
192
192
A database URI could be provided as as str.
193
193
SQLite DBAPI connection mode not supported.
194
+
194
195
Note: The user is responsible for engine disposal and connection
195
196
closure for the SQLAlchemy connectable. See `EngineDisposal
196
197
<https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
@@ -291,10 +292,10 @@ def read_sql_query(
291
292
Using SQLAlchemy makes it possible to use any DB supported by
292
293
that library. Legacy support is provided for sqlite3.Connection
293
294
objects.
295
+
294
296
Note: The user is responsible for engine disposal and connection
295
297
closure for the SQLAlchemy connectable. See `EngineDisposal
296
298
<https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
297
-
298
299
index_col : string or list of strings, optional, default: None
299
300
Column(s) to set as index(MultiIndex).
300
301
coerce_float : boolean, default True
@@ -372,10 +373,10 @@ def read_sql(
372
373
or DBAPI2 connection (fallback mode)
373
374
Using SQLAlchemy makes it possible to use any DB supported by that
374
375
library. Legacy support is provided for sqlite3.Connection objects.
376
+
375
377
Note: The user is responsible for engine disposal and connection
376
378
closure for the SQLAlchemy connectable. See `EngineDisposal
377
379
<https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
378
-
379
380
index_col : string or list of strings, optional, default: None
380
381
Column(s) to set as index(MultiIndex).
381
382
coerce_float : boolean, default True
@@ -476,10 +477,10 @@ def to_sql(
476
477
Using SQLAlchemy makes it possible to use any DB supported by
477
478
that library. Legacy support is provided for sqlite3.Connection
478
479
objects.
480
+
479
481
Note: The user is responsible for engine disposal and connection
480
482
closure for the SQLAlchemy connectable. See `EngineDisposal
481
483
<https://docs.sqlalchemy.org/en/13/core/connections.html?highlight=engine#engine-disposal>`_.
482
-
483
484
schema : string, default None
484
485
Name of SQL schema in database to write to (if database flavor
485
486
supports this). If None, use default schema (default).
0 commit comments