在web.config中創(chuàng)建數(shù)據(jù)庫連接
發(fā)表時間:2024-05-21 來源:明輝站整理相關軟件相關文章人氣:
[摘要]在asp.net應用程序下找到web.config文件,在<system.web>前面加入下面的代碼:<?xml version="1.0" encoding="utf-8"?><configuration> <...
在asp.net應用程序下找到web.config文件,在<system.web>前面加入下面的代碼:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="ConnectionString" value="server=jeff;uid=sa;pwd=btk;database=msg" />
</appSettings>
<system.web>
......
</system.web>
</configuration>
在aspx文件里面建立連接:
public SqlDataReader GetReviews(int productID) {
// 創(chuàng)建Connection和Command對象實例
SqlConnection myConnection = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
SqlCommand myCommand = new SqlCommand("ReviewsList", myConnection);
myCommand.CommandType = CommandType.StoredProcedure;
// 參數(shù)
SqlParameter parameterProductID = new SqlParameter("@ProductID", SqlDbType.Int, 4);
parameterProductID.Value = productID;
myCommand.Parameters.Add(parameterProductID);
// 執(zhí)行
myConnection.Open();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
// 返回結果
return result;
}