diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2022-08-30 20:44:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 20:44:14 (GMT) |
commit | 7b01ce7953c0e24aa7aeaf207216fc9e7aefd18a (patch) | |
tree | 0cdea2ef446d3e16b1cdcd01fb8039dc4b293445 /Doc/library | |
parent | f49dd54b72ec3fe6dbdcd2476a810929382bc196 (diff) | |
download | cpython-7b01ce7953c0e24aa7aeaf207216fc9e7aefd18a.zip cpython-7b01ce7953c0e24aa7aeaf207216fc9e7aefd18a.tar.gz cpython-7b01ce7953c0e24aa7aeaf207216fc9e7aefd18a.tar.bz2 |
Docs: normalise sqlite3 placeholder how-to heading (#96413)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sqlite3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 31a0e7f..58343b1 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1653,8 +1653,8 @@ How-to guides .. _sqlite3-placeholders: -Using placeholders to bind values in SQL queries -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +How to use placeholders to bind values in SQL queries +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SQL operations usually need to use values from Python variables. However, beware of using Python's string operations to assemble queries, as they |