Public Sub ExcecuteQuery(ByVal SqlQuery As String)
'// The "Using" block will automatically dispose of the connection when we're finished
Using MyConnectionMySQLOpen As New MySqlClient.MySqlConnection(m_strMyConString)
Try
MyConnectionMySQLOpen.Open()
Dim cmd As New MySqlClient.MySqlCommand()
With cmd
.Connection = MyConnectionMySQLOpen
.CommandType = CommandType.Text
.CommandText = SqlQuery
.ExecuteNonQuery()
End With
MyConnectionMySQLOpen.Close()
Catch MyException As MySqlException
Throw MyException
Finally
If MyConnectionMySQLOpen.State = ConnectionState.Open Then
MyConnectionMySQLOpen.Close()
End If
End Try
End Using
End Sub
|