类类型 TableAdapter 构造函数上的预期错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
忽略“自我”有帮助吗? 我期待“自我”。 是不必要的。 我很少使用它。
does it help to leave out the "self."? i would expect "self." is unnecessary. i use it only rarely.
你能展示完整的文件吗? 该错误表明“Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter”不是已知的类类型。
Can you show the full file? The error says that "Presidents.PresidentsTableAdapters.USPRESIDENTSTableAdapter" is not a known class type.