Delphi - Merge two tables from different databases

2

I have a Firebird (F) database with professional data:

Nome, Idade, CBO

I have a Paradox (P) table with occupancy data:

CBO, Descrição

What I want to do is merge these two tables so that it stays:

Nome, Idade, CBO, Descrição

where F.CBO = P.CBO

Is it possible?

    
asked by anonymous 26.11.2016 / 19:48

1 answer

1

It is possible through FireDAC , data access library. See the response that I provided, very interesting and easy.

    
28.11.2016 / 17:16