python 安装sqlite3
下载whl文件后pip安装:
https://www.lfd.uci.edu/~gohlke/pythonlibs/
连接数据库
// 连接到数据库
conn = db.connect(db_path)
// 获取游标
cur = conn.cursor()
// 查看所有表
exectCmd = "select name from sqlite_master where type=&
下载whl文件后pip安装:
https://www.lfd.uci.edu/~gohlke/pythonlibs/
// 连接到数据库
conn = db.connect(db_path)
// 获取游标
cur = conn.cursor()
// 查看所有表
exectCmd = "select name from sqlite_master where type=&