我正在尝试从 excel 表中填充我的数据网格视图。我在这里收到的错误消息是,oledb 异常没有被处理->The 'Microsoft.ACE.OLEDB.14.0' provider is not registered on the local machine.
我正在使用 2012 年的办公室,我是否必须使用任何参考。
我将anycpu
X86 放在项目属性中。
有系统文件:
using System;
using System.Data;
using System.Drawing;
using System.Reflection;
using System.Collections.Generic;
using System.Windows.Forms;
using Excel = Microsoft.Office.Interop.Excel;
using System.Data.OleDb;
private void importXSLToolStripMenuItem_Click(object sender, EventArgs e)
{
OleDbConnection connect = new OleDbConnection();
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\test\csharp.net-informations.xls;ExtendedProperties=""Excel 14.0;HDR=YES;""";
OleDbCommand command = new OleDbCommand("SELECT ID, TYPE, BeginBorder (mm),EndBorder (mm)," + "FROM [P2S2$]", connect);
DataSet ds = new DataSet();
OleDbDataAdapter adapter = new OleDbDataAdapter(command);
adapter.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
}