muncherelli
muncherelli

Reputation: 2903

Which MySQL connection is better to use with C#?

Should I use the native .NET connector for MySQL? Or should I use the ODBC connector for MySQL and use that ODBC connection in C#? I am using C# 2010 Express. Which one is easier to manipulate data in a MySQL database?

Upvotes: 1

Views: 135

Answers (1)

PsychoCoder
PsychoCoder

Reputation: 10765

To be honest I would go with the .NET MySql Connector, that would be like using the OleDb one for Oracle (while it can be done why not use the proper tool for the job)

Upvotes: 2

Related Questions