From 0215116e5dfa8b83c01d0fe7944575c32965933c Mon Sep 17 00:00:00 2001 From: Guilherme Beltramini Date: Mon, 5 Mar 2018 18:56:08 -0300 Subject: [PATCH] to_sql also accepts Series --- pandas/io/sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/sql.py b/pandas/io/sql.py index 437e279e90979..a582d32741ae9 100644 --- a/pandas/io/sql.py +++ b/pandas/io/sql.py @@ -404,7 +404,7 @@ def to_sql(frame, name, con, schema=None, if_exists='fail', index=True, Parameters ---------- - frame : DataFrame + frame : DataFrame, Series name : string Name of SQL table. con : SQLAlchemy connectable(engine/connection) or database string URI