我在使数据库与 webiopi 一起工作时遇到了一些问题。我已经导入 sqlite3 并更改文件夹权限,但是当我运行 webiopi 时,什么都没有创建。但是,f.write('This is a test\n')
每个过程之后的其他功能正常工作并重复循环。希望你能帮我?
def loop():
db = sqlite3.connect('schedule.db')
db.execute('DROP TABLE IF EXISTS schedule')
db.execute('CREATE TABLE schedule (hour int, minute int, second int, status text)')
db.execute('INSERT INTO schedule (hour,minute,second,status) VALUES (?,?,?,?)',(sche.get('hour'),sche.get('minute'),sche.get('second'),"yes"))
db.commit()
f = open('workfile', 'w')
f.write('This is a test\n')
loop1=1
while ((now.minute >= minute_ON) and (now.minute < minute_OFF) and (loop1<stepping)):
step()
loop1=loop1+1
谢谢