Bottle实例Todo-List—用SQLite3创建数据库

前端之家收集整理的这篇文章主要介绍了Bottle实例Todo-List—用SQLite3创建数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@代码如下:

Python Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#-*-coding:utf-8-*-
#!/usr/bin/python
#filename:creat_db.py
#codedtime:2014-8-2622:33:58

importsqlite3

#警告:todo.db文件被创建到当前目录下
con=sqlite3.connect( 'todo.db')

con.execute( "CREATETABLEtodo(idINTEGERPRIMARYKEY,taskchar(100)NOTNULL,statusboolNOTNULL)")
con.execute( "INSERTINTOtodo(task,status)VALUES\
( 'ReadA-byte-of-pythontogetagoodintroductionintoPython',0) ")
con.execute( "INSERTINTOtodo(task,status)VALUES\
( 'VisitthePythonwebsite',1) ")
con.execute( "INSERTINTOtodo(task,status)VALUES\
( 'TestvarIoUseditorsforandchecktheSyntaxhighlighting',status)VALUES\
( 'ChooseyourfavoriteWSGI-Framework',0) ") con.commit()
在IDLE下F5运行会本目录下生成一个叫todo.db的数据库文件,有三个字段:id、task、status;这个数据库将在以后的程序中用到。 原文链接:https://www.f2er.com/sqlite/200283.html

猜你在找的Sqlite相关文章