Can anyone help please. I use the following .net code to connect to MySql database
using MySql.Data.MySqlClient;
MySqlConnection Conn = new MySqlConnection("server=localhost;Database=tbc_database;userid=tbc_user;password=xxxxxx;pooling=false");
Conn.Open()...