8000 DOC: Document existing functionality of pandas.DataFrame.to_sql() #11886 by oguzhanogreden · Pull Request #26795 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Document existing functionality of pandas.DataFrame.to_sql() #11886 #26795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Aug 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix typo
  • Loading branch information
oguzhanogreden authored Aug 29, 2019
commit efa97be404f754c9bf038a271b845e63c4b0cd9d
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2606,7 +2606,7 @@ def to_sql(

* None : Uses standard SQL ``INSERT`` clause (one per row).
* 'multi': Pass multiple values in a single ``INSERT`` clause.
* callable with signature ``(pd_table, con, keys, data_iter)``.
* callable with signature ``(pd_table, conn, keys, data_iter)``.

Details and a sample callable implementation can be found in the
section :ref:`insert method <io.sql.method>`.
Expand Down
0