Should I build my own wrapper class for MySQL or should I use download one of the installable MySQL addins for Visual Studio to help?
My App is pretty simple, but I’m also new to C#.
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.
MySQL provides .NET conector for C#.
See this!
You can use it in very simple projects. Here is an example of using it with ADO.NET with ODBC driver and here how to use it directly.
For more complex projects I strongly suggest to use some OR mappers that supports MySQL like SubSonic or BLToolkit.