I have the following code is to update a database
Actualizar = "UPDATE" + TABLE + "Set Estatus = '" & TextBox3.Text & "' WHERE Num_Orden = '" & Form1.Text_Orden.Text & "'"
I would like to know how to concatenate the sentence "update" with the variable TABLE , TABLE is a variable of type string that takes the value of a combobox with multiple options
Since when I put
Actualizar = "UPDATE MIBASE Set Estatus = '" & TextBox3.Text & "' WHERE Num_Orden = '" & Form1.Text_Orden.Text & "'"
If the record is updated. I hope you can help me. Greetings.