<การกำหนดค่า>
<!-- การตั้งค่าเฉพาะแอปพลิเคชัน -->
<การตั้งค่าแอป>
<เพิ่มคีย์=ค่า ConnectionString=server=localhost;uid=sa;pwd=;database=store />
</การตั้งค่าแอป>
<การกำหนดค่า>
SqlDataReader GetReviews สาธารณะ (int productID) {
// 创建Connection和Command对象实例
SqlConnection myConnection = SqlConnection ใหม่ (ConfigurationSettings.AppSettings[ConnectionString]);
SqlCommand myCommand = SqlCommand ใหม่ (รายการรีวิว, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
// 参数
SqlParameter parameterProductID = SqlParameter ใหม่(@ProductID, SqlDbType.Int, 4);
พารามิเตอร์ProductID.Value = productID;
myCommand.Parameters.Add(parameterProductID);
// 执行
myConnection.Open();
ผลลัพธ์ SqlDataReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// 返回结果
ส่งคืนผลลัพธ์;
数据库连接;ส่งคืนจริง>