@@ -489,19 +489,19 @@ Connection Objects
489
489
make sure to :meth: `commit ` before closing
490
490
to avoid losing pending changes.
491
491
492
- .. method :: execute(sql[ , parameters] )
492
+ .. method :: execute(sql, parameters=(), / )
493
493
494
494
Create a new :class: `Cursor ` object and call
495
495
:meth: `~Cursor.execute ` on it with the given *sql * and *parameters *.
496
496
Return the new cursor object.
497
497
498
- .. method :: executemany(sql[ , parameters] )
498
+ .. method :: executemany(sql, parameters, / )
499
499
500
500
Create a new :class: `Cursor ` object and call
501
501
:meth: `~Cursor.executemany ` on it with the given *sql * and *parameters *.
502
502
Return the new cursor object.
503
503
504
- .. method :: executescript(sql_script)
504
+ .. method :: executescript(sql_script, / )
505
505
506
506
Create a new :class: `Cursor ` object and call
507
507
:meth: `~Cursor.executescript ` on it with the given *sql_script *.
@@ -971,11 +971,11 @@ Cursor Objects
971
971
a transaction is implicitly opened before executing *sql *.
972
972
973
973
974
- .. method :: executemany(sql, seq_of_parameters , /)
974
+ .. method :: executemany(sql, parameters , /)
975
975
976
976
Execute :ref: `parameterized <sqlite3-placeholders >` SQL statement *sql *
977
977
against all parameter sequences or mappings found in the sequence
978
- *seq_of_parameters *. It is also possible to use an
978
+ *parameters *. It is also possible to use an
979
979
:term: `iterator ` yielding parameters instead of a sequence.
980
980
Uses the same implicit transaction handling as :meth: `~Cursor.execute `.
981
981
0 commit comments