2012年4月1日 星期日

ADO.NET 物件設定OleDb連結

 

設定Web.Config 增加NameSpace 參照

<system.web>
     <pages>
       <namespaces>
         <add namespace="System.Data"/>
         <add namespace="System.Data.OleDb"/>
       </namespaces>
     </pages>
  </system.web>

 

測試:
在空的網頁上新增一個Button 加入以下程式

protected void Button2_Click(object sender, EventArgs e)
    {
        OleDbConnection ol = new OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;User Id=sa;Password=P@ssw0rd;Initial Catalog=northwind");

        ol.Open();
        ol.Close();
        Response.Write("OleDb Connection...");
    }

 

 

結果:

image

ADO.NET 物件設定SQL連結


web.config 中設定增加參考

<system.web>
      <pages>
        <namespaces>
          <add namespace="System.Data.SqlClient"/>  // 引用SQL 的NameSpace
          <add namespace="System.Data.OleDb"/>  // 引用OLEDb 的NameSpace
        </namespaces>
      </pages>
</system.web>

測試:
在空的網頁上新增一個Button 加入以下程式
protected void Button1_Click(object sender, EventArgs e)
    {
     //方法一:
     //   SqlConnection cn = new SqlConnection("Data Source=localhost;User Id=sa;Password=P@ssw0rd;Initial Catalog=northwind");
     //方法二:
    //    SqlConnection cn = new SqlConnection("Server=localhost;UID=sa;PWD=P@ssw0rd;Database=northwind");
    //方法三:
    //在一空Web 中拖拉資料庫的任一Table 到網頁中,在Web.Config 中會自動產生連接的設定,將Add Name 輸入到下方即可進行連結。
        SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["NorthwindConnectionString1"].ConnectionString);

        cn.Open();
        cn.Close();
        Response.Write("Sql Connection...");
    }

結果:
image