What does "pooling=false" in a MySQL connection string mean?

.net, c#, connection-string, mysql

Solution

When `pooling=false` the connection will not return to the pool when you call `SqlConnection.Close()`

From MSDN

When the value of this key is set to true, any newly created connection will be added to the pool when closed by the application. In a next attempt to open the same connection, that connection will be drawn from the pool. Connections are considered the same if they have the same connection string. Different connections have different connection string

Problem

What does `pooling=false` in a .NET connection-string for a MySQL database mean? This is the complete connection string: ``` return new MySqlConnection("SERVER=localhost;DATABASE=myDataBase;USER=###;PASSWORD=***;POOLING=FALSE;"); ```

Original source

Related problems