1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
//connexion au bd
SqlConnection con = new SqlConnection(@"Data Source=SYRINE;Initial Catalog=bd_ges;Integrated Security=True");
SqlCommand cmd;
SqlDataReader rd;
private void button1_Click(object sender, EventArgs e)
{
con.Open();
if(con.State==ConnectionState.Open){
if( t2.Text!=String.Empty && t3.Text!=String.Empty && t4.Text!=String.Empty
&& t5.Text!=String.Empty && t6.Text!=String.Empty){
cmd=new SqlCommand("insert into utilisateur values('" + t1.Text + "','" + t2.Text + "','" + t3.Text + "', '" + t4.Text + "','" + t5.Text + "','"+t3.Text+"')", con);
cmd.ExecuteNonQuery();
con.Close();
MessageBox.Show("votre utilisteur est bien enregistré");
//vider les champs
t1.Clear();
t2.Clear();
t3.Clear();
t4.Clear();
t5.Clear();
t6.Clear();
//mettre le curseur dans le 1ére champ
t1.Focus();
}else{
MessageBox.Show("tous les champs ne doivent pas etre vide");
}
}
else
{
MessageBox.Show("erreur de connexion");
}
} |
Partager