diff options
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r-- | Doc/library/sqlite3.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 545f679..1d44540 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1007,9 +1007,16 @@ Cursor Objects *sql_script* must be a :class:`string <str>`. - Example: + Example:: - .. literalinclude:: ../includes/sqlite3/executescript.py + # 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; + """) .. method:: fetchone() |