<配置>
<!-- 應用程式特定設定 -->
<應用程式設定>
<add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store />
</應用程式設定>
<configuration>
public SqlDataReader GetReviews(int ProductID) {
//建立Connection和Command物件實例
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>