c 23 add a textbox in mysql select

Solutions on MaxInterview for c 23 add a textbox in mysql select by the best coders in the world

showing results for - "c 23 add a textbox in mysql select"
Florencia
08 Jul 2016
1command.CommandText = "SELECT * FROM info where id=@id";
2command.Parameters.AddWithValue("@id",textBox1.Text);
3