Check Table output
Posted: Wed 20 Jul 2011 23:17
Hi,
I use a tQuery to send the following command to the server and I don't see how I could send the result to a tMemo for displaying on the screen.
I have also check your other query like component but did not find a solution.
Many thanks.
Yves
I use a tQuery to send the following command to the server and I don't see how I could send the result to a tMemo for displaying on the screen.
I have also check your other query like component but did not find a solution.
Code: Select all
while not MyMetaData.Eof do
begin
MyQuery1.SQL.Clear;
MyQuery1.SQL.Add('Check table ' + MyMetaData.FieldByName('TABLE_NAME').AsString));
MyQuery1.Execute;
MyMetaData.Next;
end;
Yves