MySQL connect pycharm: Process finished with exit code -1073741819 (0xC0000005)
I am trying to connect MySQL to Pycharm. With this code: import mysql.connector db = mysql.connector.connect( host="localhost", user="root", passwd="password", database="test" But I got this: Process finished with exit code -1073741819 (0xC0000005) What should I do? I have done many things…