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.
1 parent c6b3f05 commit 4274fbcCopy full SHA for 4274fbc
examples/example_executemany.py
@@ -22,7 +22,7 @@ async def test_example_executemany(loop):
22
await cur.execute("INSERT INTO music_style VALUES(3,'power metal');")
23
await conn.commit()
24
25
- # insert 3 row by one long query using *executemane* method
+ # insert 3 row by one long query using *executemany* method
26
data = [(4, 'gothic metal'), (5, 'doom metal'), (6, 'post metal')]
27
await cur.executemany(
28
"INSERT INTO music_style (id, name)"
0 commit comments