@@ -413,19 +413,19 @@ Connection Objects
413
413
make sure to :meth: `commit ` before closing
414
414
to avoid losing pending changes.
415
415
416
- .. method :: execute(sql[ , parameters] )
416
+ .. method :: execute(sql, parameters=(), / )
417
417
418
418
Create a new :class: `Cursor ` object and call
419
419
:meth: `~Cursor.execute ` on it with the given *sql * and *parameters *.
420
420
Return the new cursor object.
421
421
422
- .. method :: executemany(sql[ , parameters] )
422
+ .. method :: executemany(sql, parameters, / )
423
423
424
424
Create a new :class: `Cursor ` object and call
425
425
:meth: `~Cursor.executemany ` on it with the given *sql * and *parameters *.
426
426
Return the new cursor object.
427
427
428
- .. method :: executescript(sql_script)
428
+ .. method :: executescript(sql_script, / )
429
429
430
430
Create a new :class: `Cursor ` object and call
431
431
:meth: `~Cursor.executescript ` on it with the given *sql_script *.
@@ -774,11 +774,11 @@ Cursor Objects
774
774
a transaction is implicitly opened before executing *sql *.
775
775
776
776
777
- .. method :: executemany(sql, seq_of_parameters , /)
777
+ .. method :: executemany(sql, parameters , /)
778
778
779
779
Execute :ref: `parameterized <sqlite3-placeholders >` SQL statement *sql *
780
780
against all parameter sequences or mappings found in the sequence
781
- *seq_of_parameters *. It is also possible to use an
781
+ *parameters *. It is also possible to use an
782
782
:term: `iterator ` yielding parameters instead of a sequence.
783
783
Uses the same implicit transaction handling as :meth: `~Cursor.execute `.
784
784
0 commit comments