类类型 TableAdapter 构造函数上的预期错误

发布于 2024-07-17 06:03:20 字数 401 浏览 8 评论 0原文

我正在使用 Delphi Prism 连接到 Advantage 数据库服务器。 我使用服务器资源管理器创建了与数据库的连接。 我向项目中添加了一个数据集对象,并向数据集中添加了一个表。 IDE 中一切正常,但是,我在表适配器构造函数上生成的设计器代码中遇到错误。

错误是:(PE26) 需要类类型。

这是生成的代码:

{ Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter }

constructor Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter;
begin
    self.ClearBeforeFill := true;
end;

I am using Delphi Prism to connect to an Advantage Database Server. I created a connection using the server explorer to the database. I added a dataset object to my project and added a table to the dataset. Everything works fine in the IDE, however, I get an error in the generated designer code on the table adapter constructor.

The error is: (PE26) Class type expected.

Here is the generated code:

{ Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter }

constructor Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter;
begin
    self.ClearBeforeFill := true;
end;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

郁金香雨 2024-07-24 06:03:20

忽略“自我”有帮助吗? 我期待“自我”。 是不必要的。 我很少使用它。

does it help to leave out the "self."? i would expect "self." is unnecessary. i use it only rarely.

一指流沙 2024-07-24 06:03:20

你能展示完整的文件吗? 该错误表明“Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter”不是已知的类类型。

Can you show the full file? The error says that "Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter" is not a known class type.

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