<構成>
<!-- アプリケーション固有の設定 -->
<アプリ設定>
<add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store />
</アプリ設定>
<configuration>
public SqlDataReader GetReviews(int productID) {
// 接続とコマンドのオブジェクトの例
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings[ConnectionString]);
SqlCommand myCommand = new SqlCommand(ReviewsList, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
// パラメータ
SqlParameter パラメータProductID = new SqlParameter(@ProductID, SqlDbType.Int, 4);
パラメータProductID.Value = 製品ID;
myCommand.Parameters.Add(parameterProductID);
// 実行
myConnection.Open();
SqlDataReader 結果 = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// 返結果
結果を返します。
データ库接続;true を返す>