datnguyentien204's picture
Upload 338 files
8e0b903 verified
raw
history blame
695 Bytes
import sqlite3
# Đường dẫn đến file cơ sở dữ liệu
db_path = 'student_attendance.db'
# Kết nối tới cơ sở dữ liệu
conn = sqlite3.connect(db_path)
# Tạo con trỏ để thực hiện các truy vấn SQL
cursor = conn.cursor()
# Thực hiện truy vấn SQL, ví dụ để lấy tất cả các bảng trong cơ sở dữ liệu
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
# Lấy kết quả
tables = cursor.fetchall()
# In danh sách các bảng
print("Danh sách các bảng trong cơ sở dữ liệu:")
for table in tables:
print(table[0])
# Đóng kết nối khi không còn sử dụng
conn.close()