執行環境:OS:Win 7、SQL Server Manager Studio、Office 2010
問題:執行SQL Server 匯出/匯入精靈,在匯入 *.xlsx 時遇到 'Microsoft.ACE.OLEDB.12.0' 提供者並未登錄於本機電腦上。(System Data)
解決方式:在執行精靈的那台電腦安裝 "2007 Office system 驅動程式:資料連線元件",即可。
檔案下載:
.2007 Office system 驅動程式:資料連線元件
.Microsoft Access Database Engine 2010 可轉散發套件
註1:網路上說安裝"Microsoft Access Database Engine 2010 可轉散發套件",可解決,但是我安裝後仍然有問題(不知道跟什麼有關)
註2:下載時需注意,因為"2007 Office system 驅動程式:資料連線元件" 和 "Microsoft Access Database Engine 2010 可轉散發套件",(如果下載32位元版本)下載後的檔名都一樣
2016年5月25日 星期三
2016年5月5日 星期四
Access 資料取得方式 In C#
如果要將單一個資料表包含100萬筆資料的Access檔案讀到DataTable,必須要有以下兩點
1.在 x64 環境下才能達到
2.連接字串中的Provider 要用 Microsoft.ACE.OLEDB.12.0,例:
<add name="connAccess" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Access檔案路徑(包含副檔名);Persist Security Info=False"/>
/// <summary>
/// 取得Access的表格名稱清單
/// </summary>
/// <returns></returns>
public static KeyValuePair<int, string>[] GetTableNames()
{
List<string> listTableName = new List<string>();
try
{
if (filePath.Length == 0)
throw new Exception("未提供檔案(*.mdb)路徑.");
ADODB.Connection connection = new ADODB.Connection();
ADOX.Catalog tableLog = new ADOX.Catalog();
try
{
connection.Open(defaultConnectionString.Replace("#FilePath#", filePath));
tableLog.ActiveConnection = connection;
for (int i = 0; i < tableLog.Tables.Count; i++)
{
if (((dynamic)tableLog.Tables[i]).Type == "TABLE")
{
listTableName.Add(tableLog.Tables[i].Name);
}
}
}
finally
{
if (connection != null)
connection.Close();
}
}
catch (Exception ex)
{
throw ex;
}
KeyValuePair<int,string>[] ret = new KeyValuePair<int,string>[listTableName.Count];
for (int i = 0; i < listTableName.Count; i++)
{
ret[i] = new KeyValuePair<int, string>(i, listTableName[i]);
}
return ret;
}
1.在 x64 環境下才能達到
2.連接字串中的Provider 要用 Microsoft.ACE.OLEDB.12.0,例:
<add name="connAccess" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Access檔案路徑(包含副檔名);Persist Security Info=False"/>
/// <summary>
/// 取得Access的表格名稱清單
/// </summary>
/// <returns></returns>
public static KeyValuePair<int, string>[] GetTableNames()
{
List<string> listTableName = new List<string>();
try
{
if (filePath.Length == 0)
throw new Exception("未提供檔案(*.mdb)路徑.");
ADODB.Connection connection = new ADODB.Connection();
ADOX.Catalog tableLog = new ADOX.Catalog();
try
{
connection.Open(defaultConnectionString.Replace("#FilePath#", filePath));
tableLog.ActiveConnection = connection;
for (int i = 0; i < tableLog.Tables.Count; i++)
{
if (((dynamic)tableLog.Tables[i]).Type == "TABLE")
{
listTableName.Add(tableLog.Tables[i].Name);
}
}
}
finally
{
if (connection != null)
connection.Close();
}
}
catch (Exception ex)
{
throw ex;
}
KeyValuePair<int,string>[] ret = new KeyValuePair<int,string>[listTableName.Count];
for (int i = 0; i < listTableName.Count; i++)
{
ret[i] = new KeyValuePair<int, string>(i, listTableName[i]);
}
return ret;
}
訂閱:
文章 (Atom)