author | William Roberts <williamr@symbian.org> |
Thu, 08 Oct 2009 20:49:04 +0100 | |
changeset 10 | 1cf69c2c2bbd |
parent 1 | 2fb8b9db1c86 |
permissions | -rw-r--r-- |
import sqlite3 def char_generator(): import string for c in string.letters[:26]: yield (c,) con = sqlite3.connect(":memory:") cur = con.cursor() cur.execute("create table characters(c)") cur.executemany("insert into characters(c) values (?)", char_generator()) cur.execute("select c from characters") print cur.fetchall()