2

要通过 SQL 查询 excel 表,我曾经使用过:

Dim excelConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strPath + ";Extended Properties=""Excel 8.0;IMEX=1;HDR=YES;"""

或者

Dim excelConnectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source= " + strPath + ";Extended Properties=""Excel 12.0;IMEX=1;HDR=YES;"""

现在这工作正常,直到我安装了 Office 2010。

现在我得到一个

Microsoft.Ace.OLEDB.12.0 提供程序未在此机器上注册异常。

如何找出正确的连接字符串/提供程序?

4

3 回答 3

7

我相信对于 Excel 2010,它是:

Dim excelConnectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Password="""";User ID=Admin;Data Source=D:\\MyDocs\\oledb.xlsx;Mode=Share Deny Write;Extended Properties=""HDR=YES;"";Jet OLEDB:Engine Type=37"

这似乎在我的视觉工作室中工作,我让 Excel 生成查询字符串,并且它有额外的条目。

于 2009-09-22T16:23:41.520 回答
2

我按照上面的建议下载并安装了 Office System Driver: Data Connectivity Components - 以下代码有效:

    string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Password=\"\";User ID=Admin;Data Source=d:\\Sample.xlsx;Mode=Share Deny Write;Extended Properties=\"HDR=YES;\";Jet OLEDB:Engine Type=37";

    OleDbConnection connection = new OleDbConnection(connectionString);

    try
    {
        connection.Open();

        OleDbCommand command = new OleDbCommand("SELECT * FROM [Sheet1$]", connection);
        OleDbDataAdapter adapter = new OleDbDataAdapter();
        adapter.SelectCommand = command;

        DataSet ds = new DataSet();
        adapter.Fill(ds);

        GridView1.DataSource = ds;
        GridView1.DataBind();

    }
    catch (Exception)
    {            
        //throw;
    }
    finally
    {
        connection.Close();
    }
于 2010-02-03T23:35:25.137 回答
1

也许您卸载了 Access 数据库引擎 (ACE) 组件?它们仍可从 MSDN 作为2007 Office System Driver: Data Connectivity Components下载。

于 2009-09-23T08:41:16.620 回答