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
|
//méthode chargement table prenant en paramètre la chaine de connexion.
private static void ChargementTable(string connectionString)
{
string queryString ="SELECT * FROM TypePrelevement ";
using (SqlConnection connection =new SqlConnection(connectionString))
{
SqlCommand cmd =new SqlCommand(queryString, connection);
connection.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
comboBox1.Items.Add(reader["Libellé"]);
}
reader.Close();
}
} |
Partager