MYSQL ODBC Connection

J

James Proctor

Hi there, im having problems connecting to a MYSQL database and think
there must be something up with my connection string. I wondered if
anyone could help me out. Im using an ODBC connection. It currently
looks something like this.

DBStr = "DRIVER={MySQL ODBC 3.51
Driver};SERVER=localhost;DATABASE=ebmdb;UID=Username;PASSWORD=Password;O
PTION=3;"
MYOpenConnection = New OdbcConnection(DBStr)
Try
MYOpenConnection.Open()
MsgBox(MYOpenConnection.State.ToString)
Catch ex As Exception
MsgBox("No Connection")
End Try

I just keep getting it jumping to "No Connection" msgbox. Does anybody
know where im going wrong. My guess is that the connection string is
incorrect. Maybe someone can point me in the right direction as to what
it should be.

Regards

JP

P.S. I have installed the MYSQL ODBC Drivers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top