我正在浏览web.py 0.3教程,一旦我得到here我import sqlite3
并设置dbn='sqlite3'
,但它无效。有人曾经这样做过吗?
编辑 - 我弄清楚了。我使用了John发布的链接中的代码,并制作了以下脚本:
import sqlite3
conn = sqlite3.connect('c:\users\user\py\database')
c = conn.cursor()
c.execute('''
CREATE TABLE todo (id integer primary key, title text, created date, done boolean default 'f');
''')
c.execute('''
CREATE TRIGGER insert_todo_created after insert on todo
begin
update todo set created = datetime('now')
where rowid = new.rowid;
end;
''')
c.execute('''
insert into todo (title) values ('Learn web.py');
''')
conn.commit()
c.close()