<配置>
<!-- 应用程序特定设置 -->
<应用程序设置>
<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>