-
Notifications
You must be signed in to change notification settings - Fork 404
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
Use of PostgreSQL COPY statement #21
Labels
Comments
We'll add support for COPY protocol soon. |
Yes, that would be a great addition. Do you plan to create functionality similar to copy expert in psycopg2, or also a higher level function as well? |
elprans
added a commit
that referenced
this issue
May 7, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
elprans
added a commit
that referenced
this issue
May 7, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
elprans
added a commit
that referenced
this issue
May 7, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
elprans
added a commit
that referenced
this issue
May 8, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
elprans
added a commit
that referenced
this issue
May 8, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
elprans
added a commit
that referenced
this issue
May 8, 2017
This commit adds two new Connection methods: copy_from_table() and copy_from_query() that allow copying the contents of a table or the results of a query using PostgreSQL COPY protocol. Issue #21.
Merged
Please try asyncpg 0.11 with COPY IN/OUT support! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to load a local file into a table on remote server using
COPY
statement?The text was updated successfully, but these errors were encountered: