I made a UpdateCommand for my dataadapter in my MySQL connection.
myDataAdapter.UpdateCommand = New MySqlCommand("UPDATE tblTable SET anotherTableID = ?antaID, tableText = ?tabText WHERE tabID = 1", myConnection)
myDataAdapter.UpdateCommand.Parameters.Add("?antaID", MySqlDbType.Int32, 15, "antaID")
myDataAdapter.UpdateCommand.Parameters.Add("?tabText", MySqlDbType.String, 15, "tabText")
Is there a way to link these up parameters to variables or textfields? Cause I want the value from a textbox to be the value of tabText.
Assuming your Textbox control Id is txtTabText