Is it possible to connect and retrieve/manipulate data with existing .NET objects in C# without installing MySQL Connector?
I have been trying the following connection string format without success.
I have also tried ...
I have been trying the following connection string format without success.
Code:
<appsettings>
<add key="C_MY_DSN" value="Provider={MySQL ODBC 3.51 Driver};server=MyServer;database=MyDB;UID=sa;password=password"/>
</appsettings>
Code:
<connectionStrings>
<add name="C_MY_DSN" connectionString="Server=MyServer;Database=MyDB;User ID=sa;Password=password" providerName="MYSQL"/>
</connectionStrings>