Delphi / ADO : how to get result of Execute() ?
Posted
by mawg
on Stack Overflow
See other posts from Stack Overflow
or by mawg
Published on 2010-05-31T09:20:17Z
Indexed on
2010/05/31
9:22 UTC
Read the original article
Hit count: 433
I have declared AdoConnection : TADOConnection;
and successfully connected to the default "mysql" database (so, no need to pass that code).
Now, taking baby steps to learn, I would like to AdoConnection.Execute('SHOW DATABASES', cmdText);
which seems to work ok, in the sense that it doesn't throw an exception, but I am such a n00b that I don't know how I can examine the result of the command :-/
Halp!
© Stack Overflow or respective owner