@@ -206,28 +206,28 @@ def read_sql_table(table_name, con, schema=None, index_col=None,
206
206
Parameters
207
207
----------
208
208
table_name : string
209
- Name of SQL table in database
209
+ Name of SQL table in database.
210
210
con : SQLAlchemy connectable (or database string URI)
211
- Sqlite DBAPI connection mode not supported
211
+ SQLite DBAPI connection mode not supported.
212
212
schema : string, default None
213
213
Name of SQL schema in database to query (if database flavor
214
214
supports this). If None, use default schema (default).
215
215
index_col : string or list of strings, optional, default: None
216
- Column(s) to set as index(MultiIndex)
216
+ Column(s) to set as index(MultiIndex).
217
217
coerce_float : boolean, default True
218
- Attempt to convert values of non-string, non-numeric objects (like
218
+ Attempts to convert values of non-string, non-numeric objects (like
219
219
decimal.Decimal) to floating point. Can result in loss of Precision.
220
220
parse_dates : list or dict, default: None
221
- - List of column names to parse as dates
221
+ - List of column names to parse as dates.
222
222
- Dict of ``{column_name: format string}`` where format string is
223
223
strftime compatible in case of parsing string times or is one of
224
- (D, s, ns, ms, us) in case of parsing integer timestamps
224
+ (D, s, ns, ms, us) in case of parsing integer timestamps.
225
225
- Dict of ``{column_name: arg dict}``, where the arg dict corresponds
226
226
to the keyword arguments of :func:`pandas.to_datetime`
227
227
Especially useful with databases without native Datetime support,
228
- such as SQLite
228
+ such as SQLite.
229
229
columns : list, default: None
230
- List of column names to select from sql table
230
+ List of column names to select from SQL table
231
231
chunksize : int, default None
232
232
If specified, return an iterator where `chunksize` is the number of
233
233
rows to include in each chunk.
0 commit comments