Insert failed: 1064 (42000): You have an error in your SQL syntax;
import mysql.connector from mysql.connector import Error as MySQLError class DatabaseManager(): """ This class manages access and CRUD operations to a MySQL database """ def __init__(self, host, port, name, user, password): """The constructor Args: host (str): server host of the database port (int): server port of the database name (str): name of the database user (str): name of user password (str): password of user """ self.host = host self.port = port self.name = name self.user = user self.password = password self.__connection = None try: print( print( f"\n-->>> Connecting to MySQL Database: {user}@{host}:{port} <<<---\n") ) connection = mysql.connector.connect( host=host, port=port, user=user, passwd=password, db=name) self.__connection = conn...