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

8 lines
186 B
Python

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)