Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

विजुअल बेसिक 6.0 के लिए MySQL नमूना - पढ़ें/लिखें

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



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Yii सम्मिलित करें ... डुप्लीकेट अद्यतन पर

  2. बेहतर प्रदर्शन के लिए आश्रित सबक्वायरी को कैसे शामिल करें?

  3. प्रति टेबल एक से अधिक AutoIncrement रखें

  4. हेरोोकू में एक रेल 3.1 ऐप के लिए एकाधिक डेटाबेस का उपयोग कैसे करें?

  5. MySQL अनुरोध | दिन के हिसाब से ग्रुप करें