bobrivers2003
Technical User
I have made a little application on mylaptop (that I have full write access to) that connect to a database and prints a couple of lines from a sql database.
...
Dim cnMySql As New rdoConnection
Dim rdoQry As New rdoQuery
Dim rdoRS As rdoResultset
' set up remote data connection using the
' MySQL ODBC driver
cnMySql.CursorDriver = rdUseOdbc
cnMySql.Connect = "uid=root;pwd=monkey;server=localhost;" & _
"driver={MySQL ODBC 3.51 Driver};database=test;dsn='';"
cnMySql.EstablishConnection
...
It works a treat because I have installed ODBC on my laptop.
I have then attempted to run the same application on a work desktop and will not work because ODBC is not installed and I do not have admin rights to do so.
i am stuck. Are there alternatives to connecting vb to MySQL without using ODBC?
I am a novice with vb. I have looked through previous thread but because I don't know what I am looking for I can't find anything!
Any Help would be greatly appreciated.
...
Dim cnMySql As New rdoConnection
Dim rdoQry As New rdoQuery
Dim rdoRS As rdoResultset
' set up remote data connection using the
' MySQL ODBC driver
cnMySql.CursorDriver = rdUseOdbc
cnMySql.Connect = "uid=root;pwd=monkey;server=localhost;" & _
"driver={MySQL ODBC 3.51 Driver};database=test;dsn='';"
cnMySql.EstablishConnection
...
It works a treat because I have installed ODBC on my laptop.
I have then attempted to run the same application on a work desktop and will not work because ODBC is not installed and I do not have admin rights to do so.
i am stuck. Are there alternatives to connecting vb to MySQL without using ODBC?
I am a novice with vb. I have looked through previous thread but because I don't know what I am looking for I can't find anything!
Any Help would be greatly appreciated.