File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2596,7 +2596,11 @@ def to_sql(
2596
2596
Name of SQL table.
2597
2597
con : sqlalchemy.engine.Engine or sqlite3.Connection
2598
2598
Using SQLAlchemy makes it possible to use any DB supported by that
2599
- library. Legacy support is provided for sqlite3.Connection objects.
2599
+ library. Legacy support is provided for sqlite3.Connection objects. The user
2600
+ is responsible for engine disposal and connection closure for the SQLAlchemy
2601
+ connectable See `here \
2602
+ <https://docs.sqlalchemy.org/en/13/core/connections.html>`_
2603
+
2600
2604
schema : str, optional
2601
2605
Specify the schema (if database flavor supports this). If None, use
2602
2606
default schema.
Original file line number Diff line number Diff line change @@ -361,7 +361,9 @@ def read_sql(
361
361
or DBAPI2 connection (fallback mode)
362
362
363
363
Using SQLAlchemy makes it possible to use any DB supported by that
364
- library. If a DBAPI2 object, only sqlite3 is supported.
364
+ library. If a DBAPI2 object, only sqlite3 is supported. The user is responsible
365
+ for engine disposal and connection closure for the SQLAlchemy connectable. See
366
+ `here <https://docs.sqlalchemy.org/en/13/core/connections.html>`_
365
367
index_col : string or list of strings, optional, default: None
366
368
Column(s) to set as index(MultiIndex).
367
369
coerce_float : boolean, default True
You can’t perform that action at this time.
0 commit comments