vote up 0 vote down star

What I'm looking for is a driver that is included with the .NET runtime to reference in my connection string (DRIVER={ ... }).

I'm currently referencing "MySQL ODBC 3.51 Driver" but this must be installed on the target machine. I'm not against redistributing the driver but if there is one I can use that is built into .NET, I would much rather go that route.

Thanks!

flag

25% accept rate
2  
Why does it matter which driver you reference? Is there a problem in referencing a dummy driver, or in having a blank connection string? – John Saunders Jul 1 at 19:00
If I leave the driver blank, the machine fails to connect to the SQLServer – unknown (yahoo) Jul 1 at 19:48
I really don't understand what you're asking, then. If you want to connect to SQL Server, then you need a SQL Server connection string. There is no question of which driver to use. Use the one for SQL Server. It ships with .NET. It sounds like you use MySQL to develop, then want to use SQL Server in production. Great. Change the connection string before you deploy to production, or right after you deploy but before the first time your code is used. – John Saunders Jul 1 at 21:25

2 Answers

vote up 1 vote down

There are drivers for SQL Server and Oracle included in the framework, but not one for MySQL.

However, there is a standalone .NET driver which I suspect doesn't require installation. Note that it's GPL - if your app is not a GPL app, you should check the licence very carefully, or look for another similar driver.

link|flag
vote up 0 vote down

I believe the MSSQL ADO.NET Providers (drivers) are installed when the .NET runtime is instsalled, but it looks like you're rockin MySql. You're best bet is to use the .NET ADO.NET Provider for MySql (not the ODBC driver), it's called MySql Connecter/.NET. Technically, the ado.net provider still has to reside on the machine that's making the call to the database (i.e. - web server or client workstation) but you don't have to "install" it... you can package it with your app via xcopy or ClickOnce, etc... I believe the ODBC driver you speak of must be installed via installation exe or msi. Also, ODBC is old and slow and you should not use it unless there is a specific requirement to do so. Use this:

http://dev.mysql.com/downloads/connector/net/6.0.html

You will be able to use ado.net just as if it were using MS SQL Server.

This will also work with the entity framework i believe.

link|flag
1  
Oh, and a little hint/tip code using the ado.net interfaces to make your application database agnostic (i.e. it can use mysql, mssql or postgres with a single code base). Pretty cool stuff. – bbqchickenrobot Jul 1 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.