C# 中怎麼建立ACCESS資料庫檔案

來源:互聯網
上載者:User
C#中怎麼建立ACCESS資料庫檔案
microsoft ado ext.2.8 
我想利用C#建立一個ACCESS資料庫檔案(A.mdb)。請問用什麼辦法可以實現。
A.mdb檔案是原來沒有的,程式需要建立一個然後往裡面寫資料!

1.
※建立工程
※進入解決方案->引用->添加引用
選擇com標籤 下的microsoft ado ext.2.8.....
->選擇-> OK
※編碼
//命令列工程代碼如下
using System;
using ADOX;
namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
ADOX.CatalogClass cat = new ADOX.CatalogClass();
cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=D:\\AccessDB\\NewMDB.mdb;" +
"Jet OLEDB:Engine Type=5");
Console.WriteLine("Database Created Successfully");
cat = null;
}
}
}
//asp.net代碼如下
private void Page_Load(object sender, System.EventArgs e)
{
ADOX.CatalogClass cat = new ADOX.CatalogClass();
cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=C://database//NewMDB.mdb;" +
"Jet OLEDB:Engine Type=5");
cat = null;
Response.Write("OK");
2.用sqlserver 的代碼如下
SqlConnection conn=new SqlConnection("Server=lemoncat007;Uid=sa;Pwd=gtt");
conn.Open();
SqlCommand cmd=new SqlCommand("create database test",conn);
cmd.ExecuteNonQuery();
3 也可以建立一個Procedure 將建立資料庫的語句寫到裡面然後執行

用C#動態建立Access資料庫

       記得以前要動態建立Access資料庫的mdb檔案都是採用DAO,用VC開發,一大堆的API,很是麻煩。現在好像也鮮有人提起DAO。其實動態建立mdb資料的最簡單的方法還是ADOX。
       用ADOX建立access資料庫方法很簡單,只需要new一個Catalog對象,然後調用它的Create方法就可以了,如下:ADOX.Catalog catalog = new Catalog();
catalog.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\test.mdb;Jet OLEDB:Engine Type=5");

       僅僅兩行代碼就搞定了。下來我主要介紹一下在c#中的實現細節。首先你要添加引用,在“Add reference”對話方塊裡切換到Com頁面,選擇“Microsoft ADO Ext. 2.8 for DDL and Security”,然後點擊OK。在檔案的開頭using ADOX名字空間。然後添加如上面所示的代碼就可以成功的建立Access 資料庫了,代碼如下:using System;
using System.Collections.Generic;
using System.Text;
using ADOX;

namespace testADOX
{
    class Program
    {
        static void Main(string[] args)
        {
             ADOX.Catalog catalog = new Catalog();
             catalog.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\test.mdb;Jet OLEDB:Engine Type=5");
         }
     }
}

       建立了資料庫檔案是沒有實際用處的,我們還要建立表。在建立表之前,我們必須串連目標資料庫,用來串連資料的橋樑居然是ADO的Connection對象,所以我們不得不再次添加對ADO的應用,在添加引用對話方塊中切換到Com頁面,選擇“Microsoft ActiveX Data Objects 2.8 Library”,然後點擊OK。下邊是建立表的完整代碼:using System;
using System.Collections.Generic;
using System.Text;
using ADOX;

namespace testADOX
{
    class Program
    {
        static void Main(string[] args)
        {
             ADOX.Catalog catalog = new Catalog();
             catalog.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\test.mdb;Jet OLEDB:Engine Type=5");

             ADODB.Connection cn = new ADODB.Connection();
            
             cn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\test.mdb", null, null, -1);
             catalog.ActiveConnection = cn;

             ADOX.Table table = new ADOX.Table();
             table.Name = "FirstTable";

             ADOX.Column column = new ADOX.Column();
             column.ParentCatalog = catalog;
             column.Name = "RecordId";
             column.Type = DataTypeEnum.adInteger;
             column.DefinedSize = 9;
             column.Properties["AutoIncrement"].Value = true;
             table.Columns.Append(column, DataTypeEnum.adInteger, 9);
             table.Keys.Append("FirstTablePrimaryKey", KeyTypeEnum.adKeyPrimary, column, null, null);
             table.Columns.Append("CustomerName", DataTypeEnum.adVarWChar, 50);
             table.Columns.Append("Age", DataTypeEnum.adInteger, 9);
             table.Columns.Append("Birthday", DataTypeEnum.adDate, 0);
             catalog.Tables.Append(table);
         
             cn.Close();
         }
     }
}

       上面的代碼中,建立了一個名為FirstTable的表,在表裡加入了4個欄位,並設定了一個主鍵。表裡的欄位分別輸入4中不同的常用類型,第一個欄位是一個自動成長的整數類型,這個類型比較特殊,你必須為這個欄位設定ParentCatalog屬性,並將“AutoIncrement”的屬性值設為true.。Access裡的Text類型對應的就是adVarWchar,而日期類型對應的是adDate。
鍵的設定如table.Keys.Append("FirstTablePrimaryKey", KeyTypeEnum.adKeyPrimary, column, null, null)所示,如果是外鍵的話,你還必須要設定關聯的表和關聯的欄位,也就是Append方法的後兩個欄位。
你也可以參照上邊的代碼建立索引和視圖。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.