2020
10-08
10-08
python中查看.db文件中表格的名字及表格中的字段操作
1.问题描述:我桌面上有一个“账号密码.db”文件,我现在想知道里面有几张表格table、表格的名字、表头结构。2.使用SQL语句"""selectnamefromsqlite_masterwheretype='table'orderbyname""",查找表格的名字。实例代码如下:#coding:utf-8importsqlite3conn=sqlite3.connect("C:\\Users\\Administrator\\Desktop\\密码账号.db")cursor=conn.cursor()sql="""selectnamefromsqlite_masterwheretype='table'or...
继续阅读 >