首页 > 数据库技术 > 详细

SQLite数据库介绍

时间:2014-08-08 18:27:27      阅读:393      评论:0      收藏:0      [点我收藏+]

  SQLite是一个文件数据库,不像Mysql,Oracle等数据库有很多进程,被很多语言bullet-in成了自己的模块,python、php、ruby都支持,作为一个小app或者更大软件不需要连接网络上数据库是一个很好的选择,一些linux主机还会初始安装sqlite.


下面给出一个最简单的示例代码:

import sqlite3
conn = sqlite3.connect(‘test.db‘)
cur = conn.cursor()
cur.execute(‘select count(*) from tab_test ‘)
rs = cur.fetchone()
count = rs[0]
print "Records count:",count


参考文章

http://www.sqlite.org/    官网

http://www.sqlite.org/cli.html   shell command

http://blog.sina.com.cn/s/blog_3fc8570201000d6w.html

本文出自 “方法总比问题多” 博客,请务必保留此出处http://xubcing.blog.51cto.com/3502962/1537518

SQLite数据库介绍,布布扣,bubuko.com

SQLite数据库介绍

原文:http://xubcing.blog.51cto.com/3502962/1537518

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!