无法选择包含"的值 - "来自excel使用c#查询

时间:2017-02-06 14:08:19

标签: c# asp.net excel

我想从Excel工作表加载数据。当我从Excel工作表中选择数据时,我会得到一些空白单元格,这些单元格最初在值中包含-。例如,如果一个单元格包含91203327-12,那么我在获取c#中的数据后会将其变为空白。

在Excel工作表中......

enter image description here

...用...获取数据后

objcmd.Connection = objconexcel;
objcmd.CommandText = "SELECT * FROM [" + getExcelSheetName + "]";
dAdapter.SelectCommand = objcmd;
dAdapter.Fill(dtresult);

......我得到了这个:

enter image description here

0 个答案:

没有答案