No mám to takhle: protected void Button1_Click(object sender, EventArgs e) { SqlConnection sc = new SqlConnection("Data Source=LUKAS-PC;Initial Catalog=TJTUPESY;Integrated Security=True"); SqlCommand cmd; sc.Open(); char H_Domaci = DomaciTextBox.Text; cmd = new SqlCommand("insert into Zapasy(Domaci,Hoste,Branky_Domaci,Branky_Hoste,Clanek,Zlute_karty_Domaci,Cervene_karty_Domaci,IDKategorie,Zlute_karty_Hoste,Cervene_karty_Hoste,Druh) values('DomaciTextBox.Text','HosteTextBox.Text','Branky_DomaciTextBox.Text','Branky_HosteTextBox.Text','TextBox2.Text','Zlute_kartyTextBox.Text','Cervene_karty_domaciTextBox.Text','TextBox3.text','TextBox1.Text','Cervene_karty_hosteTextBox.Text','TextBox4.Text')", sc); cmd.ExecuteNonQuery(); sc.Close(); } Mohl byste mi dát příklad alspoň u jedné té proměné jak ji tam dát? Děkuji
|