今天我們就接續昨天的繼續看下去!!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Configuration;
using System.Data.SqlClient;
namespace databaseconnect1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string sqlstr = "select * from TEST1";
SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["鐵 人賽示範資料庫ConnectionString"].ConnectionString);
conn.Open();
SqlCommand cmd = new SqlCommand(sqlstr, conn);
SqlDataReader dr = cmd.ExecuteReader();
GridView1.DataSource = dr;
GridView1.DataBind();
cmd.Cancel();
conn.Close();
}
}
}
接下來我們可以看到SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["鐵 人賽示範資料庫ConnectionString"].ConnectionString);
這一段的的程式裡面唯一需要更改的地方就是你自己當時在web.config裡檔案裡自己命名的連結字串的名稱SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["自行命名的連結字串"].ConnectionString);
!
那講到這裡我們也要將命名字串的程式碼給各位讀者參考一下,這裡先貼上完整的web.config檔案的程式碼!!
<?xml version="1.0" encoding="utf-8"?>
<!--
如需如何設定 ASP.NET 應用程式的詳細資訊,請前往
https://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="鐵人賽示範資料庫ConnectionString" connectionString="Data Source=.\SQLExpress;Initial Catalog=鐵人賽示範資料庫;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.7.2" />
<httpRuntime targetFramework="4.7.2" />
</system.web>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" />
</compilers>
</system.codedom>
</configuration>
可以看到在這一部份
<connectionStrings>
<add name="鐵人賽示範資料庫ConnectionString" connectionString="Data Source=.\SQLExpress;Initial Catalog=鐵人賽示範資料庫;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
之前有跟讀者們提過了這一段程式碼的意義,而在這裡再提醒大家一次這裡的add name
後的參數名稱("鐵人賽示範資料庫ConnectionString")
就是到時要放入至後置程式碼中的連結字串的名字!!
好了!那讓我們回到原先的後置程式碼中我們看到SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["自行命名的連結字串"].ConnectionString);
這一段就是建立資料庫的連結,其中conn
是可以自行命名的一個參數!!那接下來的一行就是conn.Open();
這裡代表的就是打開通訊通道!!