Spaces:
Paused
Paused
File size: 424 Bytes
e4fe207 ddafbd0 e4fe207 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# # database.py
# import mysql.connector
# # Connect to your MySQL database
# db_connection = mysql.connector.connect(
# host="localhost",
# user="root",
# password="",
# database="university_evaluation_5"
# )
# cursor = db_connection.cursor()
#### for sqlite connection ####
import sqlite3
db_connection = sqlite3.connect('database/data.sqlite', check_same_thread=False)
cursor = db_connection.cursor()
|