ODBC connector
डाउनलोड करें MySQL डाउनलोड पेज
से ।
सही connectionstring
की तलाश करें यहां
पर ।
अपने VB6 प्रोजेक्ट में Microsoft ActiveX Data Objects 2.8 Library
के संदर्भ का चयन करें . यदि आपके पास Windows Vista या Windows 7 है तो यह संभव है कि आपके पास 6.0 लाइब्रेरी भी हो। यदि आप चाहते हैं कि आपका प्रोग्राम 2.8 लाइब्रेरी के साथ बेहतर तरीके से Windows XP क्लाइंट पर भी चले। यदि आपके पास एसपी 1 के साथ विंडोज 7 है तो आपका प्रोग्राम एसपी1 में संगतता बग के कारण कम स्पेक्स वाले किसी अन्य सिस्टम पर कभी नहीं चलेगा। आप इस बग के बारे में अधिक पढ़ सकते हैं KB2517589
।
यह कोड आपको ODBC कनेक्टर के साथ आरंभ करने के लिए पर्याप्त जानकारी देगा।
Private Sub RunQuery()
Dim DBCon As adodb.connection
Dim Cmd As adodb.Command
Dim Rs As adodb.recordset
Dim strName As String
'Create a connection to the database
Set DBCon = New adodb.connection
DBCon.CursorLocation = adUseClient
'This is a connectionstring to a local MySQL server
DBCon.Open "Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=myDataBase; User=myUsername;Password=myPassword;Option=3;"
'Create a new command that will execute the query
Set Cmd = New adodb.Command
Cmd.ActiveConnection = DBCon
Cmd.CommandType = adCmdText
'This is your actual MySQL query
Cmd.CommandText = "SELECT Name from Customer WHERE ID = 1"
'Executes the query-command and puts the result into Rs (recordset)
Set Rs = Cmd.Execute
'Loop through the results of your recordset until there are no more records
Do While Not Rs.eof
'Put the value of field 'Name' into string variable 'Name'
strName = Rs("Name")
'Move to the next record in your resultset
Rs.MoveNext
Loop
'Close your database connection
DBCon.Close
'Delete all references
Set Rs = Nothing
Set Cmd = Nothing
Set DBCon = Nothing
End Sub