我正在使用 OleDB,我想将我的对象导出到 excel 表中。工作表中的每一行都是我的对象之一。问题是当工作表中没有列标题时,我不知道如何插入数据。
这个:
commandString = "Insert into [Sheet1$] values('test1', 'test2')"
抛出此异常:
Number of query values and destination fields are not the same.
我的连接字符串是:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+filename+";Extended Properties='Excel 8.0;HDR=No'"