We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In asyncpg (version 0.18.3), is this code:
for bind in bind_list: conn.execute("some insert query", *bind)
identical to this: conn.executemany("some insert query", bind_list)? Because AFAIK this was/is the case with psycopg2.
conn.executemany("some insert query", bind_list)