<configuration>
<!-- paramètres spécifiques à l'application -->
<paramètres de l'application>
<add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store />
</appSettings>
<configuration>
public SqlDataReader GetReviews(int productID) {
// Gestion de la connexion et de la commande
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings[ConnectionString]);
SqlCommand myCommand = new SqlCommand(ReviewsList, myConnection);
maCommand.CommandType = CommandType.StoredProcedure ;
// 参数
Paramètre SqlParameterProductID = new SqlParameter (@ProductID, SqlDbType.Int, 4);
paramètreProductID.Value = productID ;
maCommand.Parameters.Add(parameterProductID);
// 执行
maConnexion.Open();
Résultat SqlDataReader = myCommand.ExecuteReader (CommandBehavior.CloseConnection);
// 返回结果
renvoyer le résultat ;
数据库连接;retour vrai>