Use Sqlite in Python

来源:互联网 发布:linux各版本 编辑:程序博客网 时间:2024/06/07 06:48
import sqlite3import os,sysDATABASE = os.path.dirname(__file__) + '/sqlite.db'def test_db():db = sqlite3.connect(DATABASE)cur = db.cursor()sql = '''create table post(ID INT PRIMARY KEY NOT NULL,TITLE CHAR(50),CONTENT TEXT,AUTHOR CHAR(30))'''data = '''insert into post(id,title,content,author) values(1,'good news','you win the big prize','admin')'''print 'run the query'query = "select * from post"posts = cur.execute(query)for post in posts:print post[1]db.close()if __name__ == '__main__':test_db()

0 0
原创粉丝点击