Forum Discussion
Hi Kateryna,
You can use the aqObject.GetProperties method to iterate through the DBTables object and get the table names. Here's the example:
You can use the aqObject.GetProperties method to iterate through the DBTables object and get the table names. Here's the example:
procedure Test;
var i, tbls;
begin
tbls := aqObject.GetProperties(DBTables);
for i := 0 to tbls.Count - 1 do
begin
Log.Message(tbls.Item(i).Name);
end;
end;
Related Content
- 12 years ago
- 10 years ago
Recent Discussions
- 6 hours ago
- 7 hours ago