C#Access數(shù)據(jù)庫 C# 動(dòng)態(tài)創(chuàng)建Access數(shù)據(jù)庫
發(fā)表時(shí)間:2023-07-28 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]C#Access數(shù)據(jù)庫 C# 動(dòng)態(tài)創(chuàng)建Access數(shù)據(jù)庫用ADOX創(chuàng)建access數(shù)據(jù)庫方法很簡(jiǎn)單,只需要new一個(gè)Catalog對(duì)象,然后調(diào)用它的Create方法就可以了,如下: ADOX.Cat...
C#Access數(shù)據(jù)庫 C# 動(dòng)態(tài)創(chuàng)建Access數(shù)據(jù)庫
用ADOX創(chuàng)建access數(shù)據(jù)庫方法很簡(jiǎn)單,只需要new一個(gè)Catalog對(duì)象,然后調(diào)用它的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#中的實(shí)現(xiàn)細(xì)節(jié)。首先你要添加引用,在“Add reference”對(duì)話框里切換到Com頁面,選擇“Microsoft ADO Ext. 2.8 for DDL and Security”,然后點(diǎn)擊OK。在文件的開頭using ADOX名字空間。然后添加如上面所示的代碼就可以成功的創(chuàng)建Access 數(shù)據(jù)庫了,代碼如下:
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");
}
}
}
創(chuàng)建了數(shù)據(jù)庫文件是沒有實(shí)際用處的,我們還要?jiǎng)?chuàng)建表。在創(chuàng)建表之前,我們必須連接目標(biāo)數(shù)據(jù)庫,用來連接數(shù)據(jù)的橋梁居然是ADO的Connection對(duì)象,所以我們不得不再次添加對(duì)ADO的應(yīng)用,在添加引用對(duì)話框中切換到Com頁面,選擇“Microsoft ActiveX Data Objects 2.8 Library”,然后點(diǎn)擊OK。下邊是創(chuàng)建表的完整代碼: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();
}
}
}
上面的代碼中,創(chuàng)建了一個(gè)名為FirstTable的表,在表里加入了4個(gè)字段,并設(shè)置了一個(gè)主鍵。表里的字段分別輸入4中不同的常用類型,第一個(gè)字段是一個(gè)自動(dòng)增長(zhǎng)的整數(shù)類型,這個(gè)類型比較特殊,你必須為這個(gè)字段設(shè)置ParentCatalog屬性,并將“AutoIncrement”的屬性值設(shè)為true.。Access里的Text類型對(duì)應(yīng)的就是adVarWchar,而日期類型對(duì)應(yīng)的是adDate。
鍵的設(shè)置如table.Keys.Append("FirstTablePrimaryKey", KeyTypeEnum.adKeyPrimary, column, null, null)所示,如果是外鍵的話,你還必須要設(shè)置關(guān)聯(lián)的表和關(guān)聯(lián)的字段,也就是Append方法的后兩個(gè)字段。
你也可以參照上邊的代碼創(chuàng)建索引和視圖
學(xué)習(xí)教程快速掌握從入門到精通的電腦知識(shí)