Im developed a software and it\'s now time to test it connection to a online server. Im developing in C# using Visual Studio and I\'m trying to connect to a MySQL server. To be
Your crash is coming from Driver.LoadCharacterSets
, which is executing SHOW COLLATION. This is bug 92982 that has been reported against the Connector/NET driver.
According to the OP on that case, he fixed the problem by disabling the skip-character-set-client-handshake
setting in his my.cnf for MySQL Server. If you also have that setting, try disabling it to see if it resolves the problem.
Otherwise, you could switch to MySqlConnector, an alternate ADO.NET library for MySQL, which doesn't have this bug.