ODBC and mysql

  • Thread starter Thread starter Poppy
  • Start date Start date
P

Poppy

I have moved my .net site with MySQL back end onto a live server and when I
open it in explorer I keep getting the following error message :

"mysql ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not
found and no default driver specified "

I have no idea why this is happening.
Can anyone please help ??
 
a dsn holds the connection information needed to locate, authenticate access
to, and provide additional configration for the db to which you are trying
to connect. either re-create the dsn using the server's odbc manager, or
provide the connection information through your connection string in lieu of
using a dsn.

hth,

steve
 
I have moved my .net site with MySQL back end onto a live server and
when I open it in explorer I keep getting the following error message
:

"mysql ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name
not found and no default driver specified "

I have no idea why this is happening.
Can anyone please help ??


Did you setup a DSN for the ODBC driver?

Otherwise, try using MySQLnet:

http://sourceforge.net/projects/mysqlnet/

Or another native MySQL .NET provider.
 
Back
Top