Docs: normalize SQL style in sqlite3 docs (#96403)

This commit is contained in:
Erlend E. Aasland 2022-08-30 00:50:42 +02:00 committed by GitHub
parent 6324b135ac
commit 6d403e264a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -387,7 +387,7 @@ Module functions
... print(f"Error message: {unraisable.err_msg}")
>>> import sys
>>> sys.unraisablehook = debug
>>> cur = con.execute("select 1")
>>> cur = con.execute("SELECT 1")
ZeroDivisionError('division by zero') in callback evil_trace
Error message: None
@ -1219,7 +1219,7 @@ Cursor objects
("row2",),
]
# cur is an sqlite3.Cursor object
cur.executemany("insert into data values(?)", rows)
cur.executemany("INSERT INTO data VALUES(?)", rows)
.. method:: executescript(sql_script, /)
@ -1237,11 +1237,11 @@ Cursor objects
# cur is an sqlite3.Cursor object
cur.executescript("""
begin;
create table person(firstname, lastname, age);
create table book(title, author, published);
create table publisher(name, address);
commit;
BEGIN;
CREATE TABLE person(firstname, lastname, age);
CREATE TABLE book(title, author, published);
CREATE TABLE publisher(name, address);
COMMIT;
""")