Is there any way to determine if a query is a multiresult query? Surely when the command is passed to the server the query component knows if there is another resultset available. When multiresult is executed from SQL Manager, both results are displayed. I would like to be able to emulate this behavior with SDAC.
Randy
TMSQuery.OpenNext question
You can use construction like following
Code: Select all
while MSQuery1.OpenNext do begin
// your code
end;