summaryrefslogtreecommitdiff
path: root/tests/test.py
blob: 559946abf5c77aabfc2d5346fb872ebd7c55debf (plain)
1
2
3
4
5
6
7
8
from pysqlcipher import dbapi2 as sqlite
conn = sqlite.connect('test.db')
c = conn.cursor()
c.execute("PRAGMA key='testaverylongpasswordisthisokey'")
c.execute("create table stocks (date text, trans text, symbol text, qty real, price real)")
c.execute("""insert into stocks values ('2006-01-05','BUY','RHAT',100,35.14)""")
conn.commit()
c.close()