sqlite是一个文件数据库,不像MysqL,Oracle等数据库有很多进程,被很多语言bullet-in成了自己的模块,python、PHP、ruby都支持,作为一个小app或者更大软件不需要连接网络上数据库是一个很好的选择,一些linux主机还会初始安装sqlite.
下面给出一个最简单的示例代码:
importsqlite3 conn=sqlite3.connect('test.db') cur=conn.cursor() cur.execute('selectcount(*)fromtab_test') rs=cur.fetchone() count=rs[0] print"Recordscount:",count
参考文章
http://www.sqlite.org/cli.html shell command
原文链接:https://www.f2er.com/sqlite/200337.html