C#,oledb连接字符串问题
我正在使用.net4.0和c#语言。 在我的代码中,我有一个连接字符串
oleConnection.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;
Data Source = " + filepath + ";
Extended Propertie s= \"Excel 12.0;HDR=yes\"";
并且运行良好。但是当我像这样更改连接字符串时:(
oleConnection.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;
Data Source =" + filepath + ";
Extended Properties =\"Excel 12.0;HDR=no\"";
我将 HDR 参数更改为“no”) 我收到错误:没有为一个或多个必需参数给出值。 来自“Microsoft Office Access 数据库引擎”的错误。
I'm using .net4.0 and c# language.
In my code i have a connection string
oleConnection.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;
Data Source = " + filepath + ";
Extended Propertie s= \"Excel 12.0;HDR=yes\"";
and it work well. But when i change a connection string like this:
oleConnection.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;
Data Source =" + filepath + ";
Extended Properties =\"Excel 12.0;HDR=no\"";
(I change HDR parameter for "no")
I got error: No value given for one or more required parameters.
error from "Microsoft Office Access Database Engine".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 [A1] 引用列,那么这将失败。当 HDR=No 时,列被引用为 F1、F2 等。
If your referencing a column using say [A1] then this will fail. With HDR=No the columns are referenced as F1, F2 etc.
OleDb 连接 HDR 默认值为“是”,没有选项。
检查:
Access 2007 的连接字符串
此致
OleDb Connection HDR Default is YES ans there is no option for that.
Check:
Connection strings for Access 2007
Regards
没有
HDR=no
...默认行为是没有标头。因此,只需完全忽略 HDR 部分 - 这也意味着没有标头。
更多信息:
http://msdn.microsoft.com/en-us/library/ms254500.aspx
There is no
HDR=no
....The default behavioour is no headers. So just leave out the HDR part completely - that will also mean no headers.
More info:
http://msdn.microsoft.com/en-us/library/ms254500.aspx