ref: e77396407a2c8f51bbc6d811dba95dfef921f4d8
dir: /sys/src/cmd/python/Doc/lib/sqlite3/executescript.py/
import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.executescript("""
create table person(
firstname,
lastname,
age
);
create table book(
title,
author,
published
);
insert into book(title, author, published)
values (
'Dirk Gently''s Holistic Detective Agency',
'Douglas Adams',
1987
);
""")