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.
Files
RequestCounter/bin/tests/db_test.py
T

7 lines
186 B
Python
Raw Normal View History

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)