14 lines
336 B
Python
14 lines
336 B
Python
# TODO Database verbindung herstellen
|
|
|
|
import mysql.connector
|
|
|
|
|
|
def db_connection(user, password, host):
|
|
connection = ''
|
|
|
|
try:
|
|
connection = mysql.connector.connect(user=user, password=password, host=host)
|
|
except mysql.connector.Error as err:
|
|
print('Something went wrong', err)
|
|
return connection.cursor()
|