Microsoft office 2007 里面的ACCESS数据库是一个轻量级的数据库,用于一般的小软件和网站都是可以的。
下面记录一下用 C#语言连接 office2007 ACCESS数据库
//WEB使用方法
connStr="Provider=Microsoft.ACE.OLEDB.12.0;DataSource="+System.Web.HttpContext.Current.Server.MapPath("~/App_Data\\你的数据库名.accdb") + ";Persist Security Info=False";
connStr="Provider=Microsoft.ACE.OLEDB.12.0;DataSource="+System.Web.HttpContext.Current.Server.MapPath("~/App_Data\\你的数据库名.accdb") + ";Persist Security Info=False";
//Win
string connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+AppDomain.CurrentDomain.BaseDirectory+ "database\\chinabase.mdb;Persist Security Info=True";