我第一次使用c#访问和读取excel文件(xlsx)。 我遇到问题,错误是:没有给出一个或多个必需参数的值
下面是我的代码:
private void button5_Click(object sender, EventArgs e)
{
string ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Class Schedules.xlsx;Extended Properties=""Excel 12.0;HDR=NO;""";
string ExcelQuery;
ExcelQuery = "SELECT A1 FROM [Sheet1$]";
OleDbConnection ExcelConnection = new OleDbConnection(ConnectionString);
ExcelConnection.Open();
OleDbCommand ExcelCommand = new OleDbCommand(ExcelQuery, ExcelConnection);
OleDbDataReader ExcelReader;
ExcelReader = ExcelCommand.ExecuteReader(); //error happens here
while (ExcelReader.Read())
{
MessageBox.Show((ExcelReader.GetValue(0)).ToString());
}
ExcelConnection.Close();
}
因为这是我的第一次,我只想尝试读取A1的内容,下面是我的excel文件:
但运行代码会给我一个错误:没有给出一个或多个必需参数的值。
答案 0 :(得分:1)
位置rCnt=1,cCnt=1
在Excel中为A1
private void button9_Click(object sender, EventArgs e)
{
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
Excel.Range range;
string str;
int rCnt = 1; // this is where you put the cell row number
int cCnt = 1; // this is where you put the cell column number
xlApp = new Excel.ApplicationClass();
xlWorkBook = xlApp.Workbooks.Open(@"C:\Class Schedules.xlsx", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
range = xlWorkSheet.UsedRange;
str = (string)(range.Cells[rCnt, cCnt] as Excel.Range).Value2; //you now have the value of A1.
xlWorkBook.Close(true, null, null);
xlApp.Quit();
releaseObject(xlWorkSheet);
releaseObject(xlWorkBook);
releaseObject(xlApp);
}
private void releaseObject(object obj)
{
try
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);
obj = null;
}
catch (Exception ex)
{
obj = null;
MessageBox.Show("Unable to release the Object " + ex.ToString());
}
finally
{
GC.Collect();
}
}
一定要:
using Excel = Microsoft.Office.Interop.Excel;
并在名为Microsoft Excel Object Library的项目中添加一个引用,可在COM选项卡下找到... 如果你想阅读多个文本,只需使用for循环 并增加rCnt或cCnt的值...... 如果你想写入单元格,我认为可以这样做:
(range.Cells[rCnt, cCnt] as Excel.Range).Value2 = value;
这就是...希望这会有助于其他人
答案 1 :(得分:0)
从查看我的一些旧代码,语法应该是:
ExcelQuery = "SELECT * FROM A1:Q10000";
这意味着您不必指定工作表名称,它将始终从第一个或默认工作表中获取,您还必须指定所选列的范围。
答案 2 :(得分:0)
我相信你的查询中的A1就是问题所在。要测试只需尝试以下操作,看看它消除了错误......
ExcelQuery = "SELECT * FROM [Sheet1$]";
如果要选择特定列,请改用HDR = YES(在conn字符串中)。
string ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Temp\Class Schedules.xlsx;Extended Properties=""Excel 12.0;HDR=YES;""";
这表示工作表的第一行包含列名。因此,它需要以这种方式格式化您的工作表,但随后您可以选择特定的列...
ExcelQuery = "SELECT [Time] FROM [Sheet1$]";