<Konfiguration>
<!-- anwendungsspezifische Einstellungen -->
<appSettings>
<add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store />
</appSettings>
<configuration>
public SqlDataReader GetReviews(int productID) {
// Verbindungs- und Befehlsverbindung herstellen
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings[ConnectionString]);
SqlCommand myCommand = new SqlCommand(ReviewsList, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
// 参数
SqlParameter parameterProductID = new SqlParameter(@ProductID, SqlDbType.Int, 4);
ParameterProductID.Value = Produkt-ID;
myCommand.Parameters.Add(parameterProductID);
// 执行
myConnection.Open();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// 返回结果
Ergebnis zurückgeben;
数据库连接;return true>