Hi!
How do you connect to any databases?
Through DataEnvironment or directly through code?
Generally, when you install MyODBC, you then configure a DSN via which you will be able to communicate to the database. In MyODBC, you set up your password, username, etc and then you can either use the DSN in VB code or link to the DSN via the DataEnvironment which makes things a little bit easier.
If you want to use libMySQL.dll directly, you need to install it in Windows\System and call its methods as you call other Windows DLLs - via Declare's - if you used WinAPI, you know what I mean. It's something like
Public Declare Function SetTextAlign Lib "gdi32" Alias "SetTextAlign" (ByVal hdc As Long, ByVal wFlags As Long) As Long
libMySQL.dll 'exports' functions, however it is not a normal ActiveX DLL so you will not be able to set a reference to it as you normally would in VB. Thus you have to use the syntax above.
Then, check MySQL docs under "API" - I remember they have the syntax of all methods that can be used. Keep in mind you will have to get into some serious API coding here, convert C++ header files to VB, etc.
So, I suggest to use the first approach - MyODBC. You will be able to install it easily either on your machine or future clients.
I hope this has helped,
Stas