Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Simplify execute() docs
  • Loading branch information
Erlend E. Aasland committed Apr 2, 2021
commit 74618e848810945294022398aebb3e8c44cde09f
4 changes: 2 additions & 2 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ Cursor Objects

.. method:: execute(sql[, parameters])

Executes an SQL statement. The SQL statement may be parameterized (that is
:ref:`placeholders <sqlite3-placeholders>` instead of SQL literals).
Executes an SQL statement. Values may be bound to the statement using
:ref:`placeholders <sqlite3-placeholders>`.

:meth:`execute` will only execute a single SQL statement. If you try to execute
more than one statement with it, it will raise a :exc:`.Warning`. Use
Expand Down