r-vasanthkumar73-dev's picture
Deploying backend and frontend folder modules.
099d157 verified
Raw
History Blame Contribute Delete
278 Bytes
import sqlite3
conn = sqlite3.connect('sentinel.db')
c = conn.cursor()
c.execute("SELECT COUNT(*) FROM student_performance")
print("student_performance rows:", c.fetchone()[0])
c.execute("SELECT COUNT(*) FROM sessions")
print("sessions rows:", c.fetchone()[0])
conn.close()