C#,oledb连接字符串问题

发布于 2024-12-09 03:52:39 字数 581 浏览 0 评论 0原文

我正在使用.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

似狗非友 2024-12-16 03:52:39

如果您使用 [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.

风柔一江水 2024-12-16 03:52:39

OleDb 连接 HDR 默认值为“是”,没有选项。

检查:

Access 2007 的连接字符串

此致

OleDb Connection HDR Default is YES ans there is no option for that.

Check:

Connection strings for Access 2007

Regards

奶茶白久 2024-12-16 03:52:39

没有 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文