When storing a MySQL connection string in App.config, what value should the providerName property be set to?
For example in the below App.config file, what value sho
Try this:
<connectionStrings> <add name="MySQL" connectionString="SERVER=8.8.8.8; DATABASE=foo; UID=bar; PASSWORD=foobar" providerName="MySql.Data.MySqlClient" /> </connectionStrings>