SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

0 0 191 Python
2007-08-15 14:28:22 +00:00
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
);
""")