17 lines
496 B
Python
17 lines
496 B
Python
# TODO Database verbindung herstellen
|
|
|
|
import mysql.connector
|
|
|
|
|
|
# Aufbau der verbindung zum Mysql Server
|
|
def db_connection(user, password, host):
|
|
connection = ''
|
|
|
|
try:
|
|
# Verbindung mit die in der Config festgelegt werden
|
|
connection = mysql.connector.connect(user=user, password=password, host=host)
|
|
except mysql.connector.Error as err:
|
|
print('Something went wrong', err)
|
|
print('Veruche deinen Mysql Server neuzustarten')
|
|
return connection.cursor()
|