WOW !! MUCH LOVE ! SO WORLD PEACE !
Fond bitcoin pour l'amélioration du site: 1memzGeKS7CB3ECNkzSn2qHwxU6NZoJ8o
  Dogecoin (tips/pourboires): DCLoo9Dd4qECqpMLurdgGnaoqbftj16Nvp


Home | Publier un mémoire | Une page au hasard

 > 

Conception et réalisation d'une base de données de gestion de stock


par BenoàƒÂ®t MUKENDI
UNIVERSITE PEDAGOGIQUE DE KANANGA UPKAN - graduation 2020
  

précédent sommaire suivant

Bitcoin is a swarm of cyber hornets serving the goddess of wisdom, feeding on the fire of truth, exponentially growing ever smarter, faster, and stronger behind a wall of encrypted energy

4.3.9. CODES POUR LE BOUTON MODIFIER

string rech = dataGridView1.CurrentRow.Cells[0].Value.ToString();

acces();

// Création de l'objet de connexion

OleDbConnection con = newOleDbConnection(chaine);

// Création de l'objet de la classe Command (requete)

OleDbCommand requete = newOleDbCommand("update fournisseur set code_fourn='" + txt1.Text + "', nom='" + txt2.Text + "', postnom='" + txt3.Text + "',prenom='" + txt4.Text + "', sexe='" + txt5.Text + "', adresse='" + txt6.Text + "' where code_fourn ='" + rech + "'", con);

//Ouverture de la connexion

con.Open();

//Exécution de la réquete

requete.ExecuteNonQuery();

//Fermeture de la connexion

con.Close();

MessageBox.Show("Modification Effectuée avec succès", "corah", MessageBoxButtons.OK);

dataGridView1.DataSource = listefssr();

effacer();

4.3.10. CODES POUR LE BOUTON SUPPRIMER

string rech = dataGridView1.CurrentRow.Cells[0].Value.ToString();

// chaine de connexion

acces();

// Création de l'objet de connexion

OleDbConnection con = newOleDbConnection(chaine);

// Création de l'objet de la classe Command (requete)

OleDbCommand requete = newOleDbCommand("delete from fournisseur where code_fourn='" + rech + "'", con);

//Ouverture de la connexion

con.Open();

//Exécution de la réquete

requete.ExecuteNonQuery();

//Fermeture de la connexion

con.Close();

MessageBox.Show("Enregistrement supprimé", "comfirmation", MessageBoxButtons.OK);

dataGridView1.DataSource = listefssr();

effacer();

4.3.11. CODES POUR LE BOUTON RECHERCHER

acces();

// Création de l'objet de connexion

OleDbConnection con = newOleDbConnection(chaine);

con.Open();

OleDbDataAdapter da = newOleDbDataAdapter("select * from fournisseur where code_fourn ='" + txt1.Text + "'", con);

DataTable table = newDataTable();

da.Fill(table);

con.Close();

return table;

précédent sommaire suivant






Bitcoin is a swarm of cyber hornets serving the goddess of wisdom, feeding on the fire of truth, exponentially growing ever smarter, faster, and stronger behind a wall of encrypted energy








"Le doute est le commencement de la sagesse"   Aristote