|
|
| 如何在web.config中建立公用的的数据库连接 |
| 作者:不详 来源:不详 发布时间:2006-8-14 8:26:32 发布人:chinazhan |
减小字体
增大字体
<configuration> <!-- application specific settings --> <appSettings> <add key=ConnectionString value=server=localhost;uid=sa;pwd=;database=store /> </appSettings> <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 parameterProductID = new SqlParameter(@ProductID, SqlDbType.Int, 4); parameterProductID.Value = productID; myCommand.Parameters.Add(parameterProductID); // 执行 myConnection.Open(); SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection); // 返回结果 return result; 数据库连接;return true> 做人要厚道,请注明转自chinazhan中国站长(www.ChinaZhan.com)。
|
| |
|
[]
[返回上一页]
[打 印]
[收 藏] |
|
| ∷相关文章评论∷ (评论内容只代表网友观点,与本站立场无关!) [更多评论...] |
|
|