Link to home
Start Free TrialLog in
Avatar of John86a
John86a

asked on

Delphi 7 - How to list SQL query content inside a Memo?

I need to list the contents of the following query inside a Memo:
qry.SQL.Add('SELECT message FROM inbox WHERE ID = 2');
qry.ExecSQL;

How can I do this?

Thanks.

ASKER CERTIFIED SOLUTION
Avatar of Ephraim Wangoya
Ephraim Wangoya
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of John86a
John86a

ASKER

Thank you again, that works well.