Delphi XE8 中没有 TTable 组件
No TTable Component in Delphi XE8
我觉得标题不言自明,我在 Delphi XE8 中找不到 TTable 组件。函数 SetKey
和 GotoNearest
不是 ADO 的一部分,因此以下带有 TADOTable 的代码不起作用:
with tblCandidates do
begin
SetKey
FieldByName('Surname').AsString := edtSearch.Text;
GotoNearest;
end;
我的假设是您在询问如何找到 BDE TTable
组件。好吧,再也没有这样的事情了。来自 XE7 What's New:
BDE Removed
BDE, our oldest database solution, has reached the final stage of
deprecation, and has been removed from RAD Studio. This includes the
Bde.DBBdeWeb and Bde.DBTables units. Instead, use newer database
technologies such as FireDAC. For migration, see Migrating BDE
Applications to FireDAC.
If you need to continue using BDE, an external installer is available
on the Registered Users site: http://cc.embarcadero.com/myreg
The BDE help remains in the XE7 help.
我觉得标题不言自明,我在 Delphi XE8 中找不到 TTable 组件。函数 SetKey
和 GotoNearest
不是 ADO 的一部分,因此以下带有 TADOTable 的代码不起作用:
with tblCandidates do
begin
SetKey
FieldByName('Surname').AsString := edtSearch.Text;
GotoNearest;
end;
我的假设是您在询问如何找到 BDE TTable
组件。好吧,再也没有这样的事情了。来自 XE7 What's New:
BDE Removed
BDE, our oldest database solution, has reached the final stage of deprecation, and has been removed from RAD Studio. This includes the Bde.DBBdeWeb and Bde.DBTables units. Instead, use newer database technologies such as FireDAC. For migration, see Migrating BDE Applications to FireDAC.
If you need to continue using BDE, an external installer is available on the Registered Users site: http://cc.embarcadero.com/myreg
The BDE help remains in the XE7 help.