6

我有一个连接字符串可以从我的 C# 项目中读取一个看起来像这样的 excel 文件。

String ConnectionString  = "Provider=Microsoft.ACE.OLEDB.12.0;" +
                                      "Data Source=" + VariableFile + ";" +
                                      "Extended Properties=Excel 8.0;";

我也有 objConn.Open(); 打开文件..

问题是我的程序打开文件的唯一时间是我手动打开 Excel 文件并运行我的程序。谁能帮我从我的 C# 代码中打开文件,而不必先手动打开它。我收到错误消息:当我尝试运行它而不先打开 Excel 文件时找不到可安装的 ISAM。

谢谢

4

5 回答 5

9

我认为您的连接字符串格式错误,“找不到可安装的 ISAM”通常表明这一点。

试试这个,它来自我的一段操作代码:

Excel 2007

string connectionString = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties=\"Excel 12.0 Xml;HDR=No;IMEX=1\";", fullPath);

Excel 2003

string connectionString = string.Format("Provider=Microsoft.Jet.OLEDB.4.0; data source={0}; Extended Properties=\"Excel 8.0;HDR=No;IMEX=1\";", fullPath);
于 2011-08-30T16:24:32.003 回答
3

我最近不得不将此提供程序用于 Azure Web 作业,我需要使用 OLEDB 提供程序而不是 Excel。

您可以使用以下设置安装 Microsoft.ACE.OLEDB.12.0 Provider。

Microsoft Access 数据库引擎 2010 可再发行组件 https://www.microsoft.com/en-us/download/details.aspx?id=13255

安装后,您可以修改 .xls 和 .xlsx 文件扩展名的连接字符串。

例如,以下代码会将 Excel 文件转换为 DataSet,其中 Excel 文件中的每个 Worksheet 都有一个 DataTable。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Data.OleDb;
using System.Linq;
using System.Net;

...

public DataSet ExcelToDataSet(string excelFilename)
{
    var dataSet = new DataSet(excelFilename);

    // Setup Connection string based on which excel file format we are using
    var excelType = "Excel 8.0";
    if (excelFilename.Contains(".xlsx"))
    {
        excelType = "Excel 12.0 XML";
    }

    // <add key="Microsoft.ACE.OLEDB" value="Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='{1};HDR=YES;READONLY=TRUE'"/>
    var connectionStringFormat = ConfigurationManager.AppSettings["Microsoft.ACE.OLEDB"].ToString();
    var excelNamePath = string.Format(@"{0}\{1}", Environment.CurrentDirectory, excelFilename);
    var connectionString = string.Format(connectionStringFormat, excelNamePath, excelType);

    // Create a connection to the excel file
    using (var oleDbConnection = new OleDbConnection(connectionString))
    {
        // Get the excel's sheet names
        oleDbConnection.Open();
        var schemaDataTable = (DataTable)oleDbConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
        oleDbConnection.Close();
        var sheetsName = GetSheetsName(schemaDataTable);

        // For each sheet name 
        OleDbCommand selectCommand = null;
        for (var i = 0; i < sheetsName.Count; i++)
        {
            // Setup select command
            selectCommand = new OleDbCommand();
            selectCommand.CommandText = "SELECT * FROM [" + sheetsName[i] + "]";
            selectCommand.Connection = oleDbConnection;

            // Get the data from the sheet
            oleDbConnection.Open();
            using (var oleDbDataReader = selectCommand.ExecuteReader(CommandBehavior.CloseConnection))
            {
                // Convert data to DataTable
                var dataTable = new DataTable(sheetsName[i].Replace("$", "").Replace("'", ""));
                dataTable.Load(oleDbDataReader);

                // Add to Dataset
                dataSet.Tables.Add(dataTable);
            }
        }

        return dataSet;
    }
}

private List<string> GetSheetsName(DataTable schemaDataTable)
{
    var sheets = new List<string>();
    foreach(var dataRow in schemaDataTable.AsEnumerable())
    {
        sheets.Add(dataRow.ItemArray[2].ToString());
    }

    return sheets;
}
于 2016-09-24T03:27:50.657 回答
1

以下代码将读取 Excel 文件并用其数据填充 DataTable

try
            {
                string connectionString = string.Empty;

                if (Path.GetExtension(ExcelFileName) == ".xlsx")
                {
                    connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + ExcelFileName +
                        ";Extended Properties=Excel 12.0;";
                }
                else
                {
                    connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + ExcelFileName + ";Extended Properties=Excel 8.0;";
                }

                OleDbCommand selectCommand = new OleDbCommand();
                OleDbConnection connection = new OleDbConnection();
                OleDbDataAdapter adapter = new OleDbDataAdapter();
                connection.ConnectionString = connectionString;

                if (connection.State != ConnectionState.Open)
                    connection.Open();

                DataTable dtSchema = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);

                List<string> SheetsName = GetSheetsName(dtSchema);
                for (int i = 0; i < SheetsName.Count; i++)
                {
                    selectCommand.CommandText = "SELECT * FROM [" + SheetsName[i] + "]";
                    selectCommand.Connection = connection;
                    adapter.SelectCommand = selectCommand;
                    DataTable Sheet = new DataTable();
                    Sheet.TableName = SheetsName[i].Replace("$", "").Replace("'", "");
                    adapter.Fill(Sheet);

                    if (Sheet.Rows.Count > 0)
                    {
                        Records.Tables.Add(Sheet);                        
                    }
                }
            }
            catch (Exception ex)
            {
                WriteLog(ex);
            }
于 2011-08-30T16:26:49.303 回答
1

其他选择是使用专门的库而不是创建连接。看看 EPPlus,它是一个在 C# 中处理 excel 文件的开源库。它对我来说非常好。

http://epplus.codeplex.com/

在此链接中,您可以看到使用 EPPlus 读取 excel 文件的示例:

http://blog.fryhard.com/archive/2010/10/28/reading-xlsx-files-using-c-and-epplus.aspx

于 2011-08-30T16:28:11.640 回答
1

有不同的提供程序用于连接到 Excel。也许你应该尝试使用不同的。看看这里的例子:

http://www.connectionstrings.com/excel

Excel 提供程序 » Microsoft Jet OLE DB 4.0 » ACE OLEDB 12.0 » OLE DB 的 .NET Framework 数据提供程序 (OleDbConnection) » Microsoft Excel ODBC 驱动程序 » ODBC 的 .NET Framework 数据提供程序 (OdbcConnection) » Microsoft Excel 的 .NET xlReader (ExcelConnection )

在你的情况下,你应该有这样的东西: Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myOldExcelFile.xls;Extended Properties="Excel 12.0;HDR=YES";

于 2011-08-30T16:25:33.633 回答