萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp.net編程 >> ASP.NET中操作SQL數據庫(連接字符串的配置及獲取)

ASP.NET中操作SQL數據庫(連接字符串的配置及獲取)

在WebConfig中配置數據庫連接字符串,代碼如下:

復制代碼 代碼如下:
<connectionStrings>
<add name="ConnectionString" connectionString="user id=用戶名;password=密碼;initial catalog=數據庫名稱;data source=服務器名稱"/>
</connectionStrings>


然後在Webform_1.aspx.cs裡面獲取連接字符串,要添加如下引用;

復制代碼 代碼如下:
using System.Configuration;
using System.Data;
using System.Data.SqlClient;


代碼:

復制代碼 代碼如下:
SqlConnection con;
protected void Page_Load(object sender, EventArgs e)
{
ConnectDB();
}
private void ConnectDB()
{
string ConString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
con = new SqlConnection(ConString);
con.Open();
SqlCommand com = new SqlCommand();
SqlDataReader sdr;
string sqlstr = "select * from item";
com.CommandText = sqlstr;
com.Connection = con;
sdr = com.ExecuteReader();
while (sdr.Read())
{
Response.Write(sdr["字段名"].ToString()+"</br>");
}
sdr.Close();
sdr = null;
}
copyright © 萬盛學電腦網 all rights reserved