OinkPig619 Posted January 3, 2009 Report Posted January 3, 2009 How do i make a mySql Connection in VB 2008? I am working on a program that is a DB editor in VB and I know it is possible. Ive tried googling it and i didnt get anything good. Any help?
iBotPeaches Posted January 4, 2009 Report Posted January 4, 2009 Dim MySQLConnectionString As String Dim MyADOConnection As MySqlConnection MySQLConnectionString = "Server=myServer;" & _ "Database=myDatabase;" & _ "Uid=myUserID;" & _ "Pwd=myPassword;" & _ "Connect Timeout=30;" MyADOConnection = New MySqlConnection(MySQLConnectionString) MyADOConnection.Open()
Recommended Posts
Archived
This topic is now archived and is closed to further replies.