We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ce22c commit 59ab400Copy full SHA for 59ab400
pandas/io/sql.py
@@ -748,9 +748,9 @@ def pandasSQL_builder(con, schema: str | None = None):
748
return SQLDatabase(con, schema=schema)
749
750
warnings.warn(
751
- "pandas only support SQLAlchemy connectable(engine/connection) or"
752
- "database string URI or sqlite3 DBAPI2 connection"
753
- "other DBAPI2 objects are not tested, please consider using SQLAlchemy",
+ "pandas only supports SQLAlchemy connectable (engine/connection) or "
+ "database string URI or sqlite3 DBAPI2 connection. "
+ "Other DBAPI2 objects are not tested. Please consider using SQLAlchemy.",
754
UserWarning,
755
)
756
return SQLiteDatabase(con)
0 commit comments