Re: Conect Mysql From Visual Basic Without odbc
estas usando un DSN o lo haces on un string de conexion directa a la base de datos ??
============================================
Private Sub ConectaMySQL()
Dim conn As ADODB.Connection
Dim rs As ADODB.Recordset
Set conn = New ADODB.Connection
conn.Open "DRIVER={MySQL ODBC 3.51 Driver};" & _
"SERVER=localhost;" & _
" DATABASE=test;" & _
" UID=root;" & _
" PWD=ceratti;" & _
" OPTION=35;"
Set rs = New ADODB.Recordset
sql = "show tables"
rs.Open sql, conn, adOpenDynamic, adLockOptimistic
While Not rs.EOF
For i = 0 To rs.Fields.Count - 1
Debug.Print rs(i)
Next i
rs.MoveNext
Wend
rs.Close
conn.Close
Set rs = Nothing
Set conn = Nothing
End Sub
============================================
wRItinG4fU|\|=)
Subject
Views
Written By
Posted
12081
August 03, 2004 10:02PM
Re: Conect Mysql From Visual Basic Without odbc
5706
August 04, 2004 12:40PM
5209
August 04, 2004 06:17PM
4862
December 14, 2004 05:00AM
3467
December 14, 2004 05:38AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.