Autism_System / check_data.py
nehal2006's picture
initial commit
68f9b9e
raw
history blame contribute delete
545 Bytes
import sqlite3
import os
db_path = os.path.join("neurosense", "data", "neurosense.db")
if os.path.exists(db_path):
conn = sqlite3.connect(db_path)
cursor = conn.cursor()
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
tables = cursor.fetchall()
for table in tables:
name = table[0]
cursor.execute(f"SELECT count(*) FROM {name};")
count = cursor.fetchone()[0]
print(f"Table {name}: {count} rows")
conn.close()
else:
print(f"Database file not found at: {db_path}")