Reginald Greyling
Reginald Greyling

Reputation: 373

No TTable Component in Delphi XE8

I think the title speaks for itself, I can’t find a TTable component in Delphi XE8. The functions SetKey and GotoNearest are not part of ADO, therefore the following code with a TADOTable does not work:

with tblCandidates do
begin
  SetKey
  FieldByName('Surname').AsString := edtSearch.Text;
  GotoNearest;
end;

Upvotes: 4

Views: 8289

Answers (1)

David Heffernan
David Heffernan

Reputation: 612944

My assumption is that you are asking how to find the BDE TTable component. Well, there is no such thing any more. From the 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.

Upvotes: 5

Related Questions