Spaces:
Sleeping
Sleeping
File size: 210 Bytes
5fdb69e |
1 2 3 4 5 6 7 8 9 10 11 |
import mysql.connector
def get_connection():
conn = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="xyz",
database="your_database"
)
return conn
|