This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-02-08 19:46:11 +08:00
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
|
|
conn = sqlite3.connect('../assets/theme.db')
|
|
|
|
|
cursor = conn.cursor()
|
|
|
|
|
cursor.execute('select * from sqlite_master where type="table"')
|
|
|
|
|
data = cursor.fetchall()
|
|
|
|
|
print(data)
|