python and reading data from the code shown sqlite

下面的内容段是关于python从sqlite读取数据并显示的内容。
import cgi, os, sys
import sqlite3 as db

conn = db.connect('test.db')
cursor = conn.cursor()
conn.row_factory = db.Row
rows = cursor.fetchall()

sys.stdout.write("Content-type: text.htmlrnrn")
sys.stdout.write("")
sys.stdout.write("<html><body><p>")
for row in rows:
sys.stdout.write("%s %s %s" % (row[0],row[1],row[2]))
sys.stdout.write("<br />")
sys.stdout.write("</p></body></html>")




 

Guess you like

Origin www.cnblogs.com/gdszlg/p/11369058.html
Recommended