Use a MySqlCommand object and with the SQL query, call the ExecuteNonQuery() method.

For example:
Code:
SQL = " UPDATE boomtable SET Tab1 = 'CLOSED' WHERE Tab1 = 'OPEN' "
myCommand.CommandText = SQL
myCommand.ExecuteNonQuery()