Can I connect to a Ubuntu server, that is running MySQL using ADO.NET or do I need a special driver?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll need the MySQL Connector/NET ADO.NET driver.
Once installed, it behaves almost identically to Microsoft’s native
System.Data.SqlClient. Instead of importing that namespace, use MySQL’s:Basically, just prepend
Mywhere you’d use any of the MSSqlClientclasses.