@@ -332,11 +332,9 @@ def read_sql_query(
332
332
----------
333
333
sql : str SQL query or SQLAlchemy Selectable (select or text object)
334
334
SQL query to be executed.
335
- con : SQLAlchemy connectable(engine/connection), database str URI,
336
- or sqlite3 DBAPI2 connection
335
+ con : SQLAlchemy connectable, str, or sqlite3 connection
337
336
Using SQLAlchemy makes it possible to use any DB supported by that
338
- library.
339
- If a DBAPI2 object, only sqlite3 is supported.
337
+ library. If a DBAPI2 object, only sqlite3 is supported.
340
338
index_col : str or list of str, optional, default: None
341
339
Column(s) to set as index(MultiIndex).
342
340
coerce_float : bool, default True
@@ -438,9 +436,7 @@ def read_sql(
438
436
----------
439
437
sql : str or SQLAlchemy Selectable (select or text object)
440
438
SQL query to be executed or a table name.
441
- con : SQLAlchemy connectable (engine/connection) or database str URI
442
- or DBAPI2 connection (fallback mode).
443
-
439
+ con : SQLAlchemy connectable, str, or sqlite3 connection
444
440
Using SQLAlchemy makes it possible to use any DB supported by that
445
441
library. If a DBAPI2 object, only sqlite3 is supported. The user is responsible
446
442
for engine disposal and connection closure for the SQLAlchemy connectable. See
0 commit comments