在Visual Studio 2010中使用Visual Basic(和.NET 4)時,我想從Access 2007 .accdb數據庫讀取數據。使用Visual Basic讀取Access 2007數據庫
我使用嚮導中的構建連接到數據庫(不導入到項目中),即:「添加新數據源」>「數據庫」> ... 然後自動生成ConnectivityString。
在網絡上的許多文章談論如何連接到使用的連接字符串的數據庫就像Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;Persist Security Info=False;
但我已經好幾個這樣的命令(自動生成)在我的App.config文件。例如:
<connectionStrings>
<add name="Wolf_Calc.My.MySettings.wolf_calcConnectionString"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\wolf-calc.accdb"
providerName="System.Data.OleDb" />
我可以然後就開始寫在我的代碼查詢,只是這樣做 value = table1.SearchCriterion("x").SearchRange("y")
?