This commit is contained in:
Your Name 2024-10-28 09:10:10 +01:00
parent 3e00285549
commit cb620811d3
2 changed files with 3 additions and 2 deletions

View File

@ -27,11 +27,12 @@ import threading
db_config = { db_config = {
'user': 'dbUser', 'user': 'dbUser',
'password': 'dbPassword', 'password': 'dbPassword',
'host': 'localhost', 'host': '127.0.0.1', # 'host': 'localhost',
'database': 'projectGeislinger', 'database': 'projectGeislinger',
'port': 3306 # Standard port for MariaDB 'port': 3306 # Standard port for MariaDB
} }
# Establishing the connection # Establishing the connection
conn = mariadb.connect(**db_config) conn = mariadb.connect(**db_config)
# Create a cursor to execute queries # Create a cursor to execute queries

View File

@ -2,7 +2,7 @@
# Form implementation generated from reading ui file '/home/bjoern/git/GeislingerProject/test.ui' # Form implementation generated from reading ui file '/home/bjoern/git/GeislingerProject/test.ui'
# #
# Created by: PyQt5 UI code generator 5.15.10 # Created by: PyQt5 UI code generator 5.15.11
# #
# WARNING: Any manual changes made to this file will be lost when pyuic5 is # WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing. # run again. Do not edit this file unless you know what you are doing.