Hi,
I'm using a DSN connection to a remote mySQL database in an ASP page. I know for sure the database exists but for some reason I get the following error:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[MySQL][ODBC 3.51 Driver]Unknown database 'ubb'
/ccweb/login.asp, line 53
I have the driver installed. It's not giving me a connection error, just "unknown database" when I know for sure that database exists. Here's my code:
var dbConnFor = Server.CreateObject("ADODB.Connection"
strConnection = "Driver={MySQL ODBC 3.51 Driver}; DSN=ubb-ccweb; DATABASE=ubb;"
dbConnFor.Open(strConnection)
It blows up on that last line.
Can someone help? I will post this in the MySQL forum as well...
Thanks!
I'm using a DSN connection to a remote mySQL database in an ASP page. I know for sure the database exists but for some reason I get the following error:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[MySQL][ODBC 3.51 Driver]Unknown database 'ubb'
/ccweb/login.asp, line 53
I have the driver installed. It's not giving me a connection error, just "unknown database" when I know for sure that database exists. Here's my code:
var dbConnFor = Server.CreateObject("ADODB.Connection"
strConnection = "Driver={MySQL ODBC 3.51 Driver}; DSN=ubb-ccweb; DATABASE=ubb;"
dbConnFor.Open(strConnection)
It blows up on that last line.
Can someone help? I will post this in the MySQL forum as well...
Thanks!