@@ -431,24 +431,21 @@ Connection Objects
431
431
432
432
.. method :: execute(sql[, parameters])
433
433
434
- This is a nonstandard shortcut that creates a cursor object by calling
435
- the :meth: `~Connection.cursor ` method, calls the cursor's
436
- :meth: `~Cursor.execute ` method with the *parameters * given, and returns
437
- the cursor.
434
+ Create a new :class: `Cursor ` object and call
435
+ :meth: `~Cursor.execute ` on it with the given *sql * and *parameters *.
436
+ Return the new cursor object.
438
437
439
438
.. method :: executemany(sql[, parameters])
440
439
441
- This is a nonstandard shortcut that creates a cursor object by
442
- calling the :meth: `~Connection.cursor ` method, calls the cursor's
443
- :meth: `~Cursor.executemany ` method with the *parameters * given, and
444
- returns the cursor.
440
+ Create a new :class: `Cursor ` object and call
441
+ :meth: `~Cursor.executemany ` on it with the given *sql * and *parameters *.
442
+ Return the new cursor object.
445
443
446
444
.. method :: executescript(sql_script)
447
445
448
- This is a nonstandard shortcut that creates a cursor object by
449
- calling the :meth: `~Connection.cursor ` method, calls the cursor's
450
- :meth: `~Cursor.executescript ` method with the given *sql_script *, and
451
- returns the cursor.
446
+ Create a new :class: `Cursor ` object and call
447
+ :meth: `~Cursor.executescript ` on it with the given *sql_script *.
448
+ Return the new cursor object.
452
449
453
450
.. method :: create_function(name, num_params, func, *, deterministic=False)
454
451
0 commit comments