File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -2646,6 +2646,10 @@ def to_sql(
2646
2646
con : sqlalchemy.engine.Engine or sqlite3.Connection
2647
2647
Using SQLAlchemy makes it possible to use any DB supported by that
2648
2648
library. Legacy support is provided for sqlite3.Connection objects.
2649
+
2650
+ Closing the connection is handled by the SQLAlchemy Engine:
2651
+ <https://docs.sqlalchemy.org/en/13/core/connections.html>
2652
+
2649
2653
schema : str, optional
2650
2654
Specify the schema (if database flavor supports this). If None, use
2651
2655
default schema.
Original file line number Diff line number Diff line change @@ -362,6 +362,9 @@ def read_sql(
362
362
363
363
Using SQLAlchemy makes it possible to use any DB supported by that
364
364
library. If a DBAPI2 object, only sqlite3 is supported.
365
+
366
+ Closing the connection is handled by the SQLAlchemy Engine:
367
+ <https://docs.sqlalchemy.org/en/13/core/connections.html>
365
368
index_col : string or list of strings, optional, default: None
366
369
Column(s) to set as index(MultiIndex).
367
370
coerce_float : boolean, default True
You can’t perform that action at this time.
0 commit comments