python sqlite3 查看数据库中所有表

来源:互联网 发布:华为敏捷网络是什么 编辑:程序博客网 时间:2024/05/18 01:02

SQL的语句是

select name from sqlite_master where type = 'table' order by name

放到python里就需要变成

print cur.execute("select name from sqlite_master where type = 'table' order by name").fetchall()

这样打印出来的就是[(u'table_name',)]

而用

cur.execute("select * from sqlite_master").fetchall()

的话,则打印出来更多的信息,虽然现在还不知道格式是怎么回事吧


通过这个方法,我们就可以知道一个数据库文件里面存有哪些表了


这个方法实在google论坛上找到的,感谢google

https://groups.google.com/d/topic/python-cn/uSrbTwQPZk4?authuser=0&fromgroups#9430ba2b28ec95db 不见得能打开。。

原创粉丝点击