Delphi - Join two different database tables

Asked

Viewed 383 times

2

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

Nome, Idade, CBO

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

CBO, Descrição

What I want to do is unite these two tables in a way that stays:

Nome, Idade, CBO, Descrição

where F.CBO = P.CBO

it is possible?

  • 1

    Yes, it is possible with a technique called dblink. Research a little on this topic, and ask us if you have any questions.

  • thanks, I will search yes. all help is valid

1 answer

1


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

  • Thank you, I’ll do what you told me

Browser other questions tagged

You are not signed in. Login or sign up in order to post.