The connection pooling connection string for SQL Server and MySql Server looks like below
MySql Server Server=mydatabaseip; Port=3306; Database=mydatabase; Uid=databaseusername; Pwd=password;Pooling=true; Min Pool Size=0;Max Pool Size=5;Connect Timeout=15;
Sql Server Data Source=databaseip; Initial Catalog=mydatabase; User ID=databaseuser; Password=password;Connection Timeout=30; Min Pool Size=5; Max Pool Size=40;
Thanks