| author | Gareth Stockwell <gareth.stockwell@accenture.com> |
| Fri, 24 Sep 2010 12:07:03 +0100 | |
| branch | graphics-phase-3 |
| changeset 115 | 7fc47a6656f3 |
| parent 1 | 2fb8b9db1c86 |
| permissions | -rw-r--r-- |
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 ); """)