Visual Studio Code – Incorrect syntax near s Sql .c#
private void btnSubmit_Click(object sender, EventArgs e) { try { if (EmpIdTB.Text == "" || Empname.Text == "" || EmpPhone.Text == "") { MessageBox.Show("Missing Information"); } else { conn.Open(); string query = "UPDATE EMPTB SET EmpId='" + EmpIdTB.Text + "', EmpName='"…