python mysql.connector does not throw any error or message, only exit from application
I am trying to connect my localhost mysql server. My personel computer succusfully connect to mysql server with tis python code: import mysql.connector from mysql.connector import Error class DatabaseHelper(): def __init__(self): self.host = "localhost" self.user = "root" self.password = "mysql"…