Am new to mysql,
I want to write a mysql connection code.
Tried Code.
string MyConString = "SERVER=localhost;" +
"DATABASE=Database1;" +
"UID=root;" +
"PASSWORD=root;";
MySqlConnection connection = new MySqlConnection(MyConString);
When i run the above code it is showing error in MySqlConnection assembly references.
Need MySql Connection code.