首頁 > 資料庫 > mysql教程 > Access 连接串

Access 连接串

WBOY
發布: 2016-06-07 15:30:26
原創
1213 人瀏覽過

连接 Access 2007 的操作方法 //无密码的 连接 字符串 stringconStr = "Provider=Microsoft.Ace.OleDb.12.0;"; conStr += @"Data Source=E:\数据库\XiaoZhen.accdb;"; conStr += "Persist Security Info=False;"; //有密码的 连接 字符串 stringconStr = "Pr

连接 Access 2007 的操作方法

 

//无密码的连接字符串

stringconStr = "Provider=Microsoft.Ace.OleDb.12.0;";

conStr += @"Data Source=E:\数据库\XiaoZhen.accdb;";

conStr += "Persist Security Info=False;";

 

//有密码的连接字符串

stringconStr = "Provider=Microsoft.Ace.OleDb.12.0;";

conStr += @"Data Source=E:\数据库\XiaoZhen.accdb;";

conStr += "Jet OleDb:DataBase Password='829321';";

 

连接 Access 2003的操作方法

 

//无密码的连接字符串

stringconStr = "Provider=Microsoft.Jet.OleDb.4.0;";

conStr += @"Data Source=E:\数据库\XiaoZhen.mdb;";

conStr += "Persist Security Info=False;";

 

//有密码的连接字符串

stringconStr = "Provider=Microsoft.Jet.OleDb.4.0;";

conStr += @"Data Source=E:\数据库\XiaoZhen.mdb;";

conStr += "Jet OleDb:DataBase Password='829321';";

 

Data Source=F:\TeacherSystem\App_Data\db.mdb;

Jet OLEDB:Database Password=123"providerName="System.Data.OleDb"/>

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板