参见英文答案 > List of tables,db schema,dump etc using the Python sqlite3 API 10个
我从sqlite3数据库中获取数据时遇到问题.我找不到表的名称及其编码.当我打开db throuh sqlitebrowser时,名字只是一个不可读的字符.
连接数据库很好.
conn = sqlite3.connect('my.db')
conn_cursor = conn.cursor()
conn.text_factory = str
最佳答案
原文链接:https://www.f2er.com/python/439546.html