首页 > 编程 > Python > 正文

python从sqlite读取并显示数据的方法

2020-01-04 19:16:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python从sqlite读取并显示数据的方法,涉及Python操作SQLite数据库的读取及显示相关技巧,需要的朋友可以参考下

本文实例讲述了python从sqlite读取并显示数据的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. import cgi, os, sys 
  2. import sqlite3 as db 
  3. conn = db.connect('test.db'
  4. cursor = conn.cursor() 
  5. conn.row_factory = db.Row 
  6. cursor.execute("select * from person"
  7. rows = cursor.fetchall() 
  8. sys.stdout.write("Content-type: text.html/r/n/r/n"
  9. sys.stdout.write("") 
  10. sys.stdout.write("<html><body><p>"
  11. for row in rows: 
  12. sys.stdout.write("%s %s %s" % (row[0],row[1],row[2])) 
  13. sys.stdout.write("<br />"
  14. sys.stdout.write("</p></body></html>"

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表