gpt4 book ai didi

ado.net - 如何使用 ADO.NET 读取 .XLSX (Excel 2007) 文件?我发现 "Could not find installable ISAM"-错误

转载 作者:行者123 更新时间:2023-12-02 19:04:51 24 4
gpt4 key购买 nike

我需要在 .net 2.0 中工作。所以我无法使用 OpenXML。

这是我的源代码,我已经安装了 AccessDatabaseEngine.exe

但仍然遇到异常:

"Could not find installable ISAM".

我还在连接字符串中尝试了“扩展属性=Excel 8.0”

static void Main(string[] args)
{
DataSet dataSet = new DataSet();

OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|Data Directory|\HSC.xlsx;Extended Properties=Excel 12.0;HDR=YES;");
OleDbDataAdapter dataAdapter= new OleDbDataAdapter("select * from [Sheet1$]", connection);

dataAdapter.Fill(dataSet);
}

最佳答案

根据 Carl Prothman 的说法,这应该是

 Extended Properties="Excel 12.0 Xml;

--http://www.connectionstrings.com/excel-2007

更详细:

 OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Docs\\Book2.xlsx;Extended Properties='Excel 12.0 xml;HDR=YES;'");           

注意单引号。

关于ado.net - 如何使用 ADO.NET 读取 .XLSX (Excel 2007) 文件?我发现 "Could not find installable ISAM"-错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4005704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com