With the service running on my machine(Setup on a LAN with no internet connection), I can connect with the following :
string sConnection = @"Server=localhost; Port=3306; Database=some_database; Uid=root; Pwd=genericpassword;";
MySqlConnection cnTest = new MySqlConnection(sConnection);
cnTest.Open();
How should I Modify my connection string to connect from another PC on the lan to my MYSQL server? *side note : The IP of my local machine is setup to be 192.168.0.1.