I am having C# multi threading application and using MySQL with single connection to whole application. But when two or more thread try to access d
C# multi threading
MySQL
Pooling is turned on by default, so you don't need that connection string parameter.
Don't share MySqlConnection instances. That's it.
MySqlConnection
Pooling is not something you implement in your code, it's done for you by ADO.NET.