ผมได้เขี่ยนคลาสการเชื่อต่อกับฐานข้อมูล ระหว่าง VB กับ ฐานข้อมูล MySql ผมจะใช้งานคลาสนี้เพื่อที่จะบึนทึกข้อมูลลงฐานข้อมูล
ผมจะเขียนได้อย่างไร
อันนี้คลาสที่เชื่อมไม่รู้เขียนถูกหรือเปล่า
Code (VB.NET)
Imports MySql.Data
Imports MySql.Data.MySqlClient
Public Class ConnectionDBClass
Dim objConn As MySqlConnection
Dim objCmd As MySqlCommand
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim strConnString As String
strConnString = "Server=localhost;User Id=root; Password=654321; Database=com; Pooling=false"
objConn = New MySqlConnection(strConnString)
objConn.Open()
If objConn.State = ConnectionState.Open Then
'Me.lblText.Text = "MySQL Connected" '
Else
MessageBox.Show("Error while connecting to SQL Server.")
' Me.lblText.Text = "MySQL Connect Failed"'
End If
End Sub
Sub Page_UnLoad()
objConn.Close()
objConn = Nothing
End Sub
End Class