@@ -499,19 +499,19 @@ Connection Objects
499
499
make sure to :meth: `commit ` before closing
500
500
to avoid losing pending changes.
501
501
502
- .. method :: execute(sql[ , parameters] )
502
+ .. method :: execute(sql, parameters=(), / )
503
503
504
504
Create a new :class: `Cursor ` object and call
505
505
:meth: `~Cursor.execute ` on it with the given *sql * and *parameters *.
506
506
Return the new cursor object.
507
507
508
- .. method :: executemany(sql[ , parameters] )
508
+ .. method :: executemany(sql, parameters, / )
509
509
510
510
Create a new :class: `Cursor ` object and call
511
511
:meth: `~Cursor.executemany ` on it with the given *sql * and *parameters *.
512
512
Return the new cursor object.
513
513
514
- .. method :: executescript(sql_script)
514
+ .. method :: executescript(sql_script, / )
515
515
516
516
Create a new :class: `Cursor ` object and call
517
517
:meth: `~Cursor.executescript ` on it with the given *sql_script *.
@@ -981,11 +981,11 @@ Cursor Objects
981
981
a transaction is implicitly opened before executing *sql *.
982
982
983
983
984
- .. method :: executemany(sql, seq_of_parameters , /)
984
+ .. method :: executemany(sql, parameters , /)
985
985
986
986
Execute :ref: `parameterized <sqlite3-placeholders >` SQL statement *sql *
987
987
against all parameter sequences or mappings found in the sequence
988
- *seq_of_parameters *. It is also possible to use an
988
+ *parameters *. It is also possible to use an
989
989
:term: `iterator ` yielding parameters instead of a sequence.
990
990
Uses the same implicit transaction handling as :meth: `~Cursor.execute `.
991
991
0 commit comments