Subject Resultset of a selectable procedure
Author Florian Hector
How do I get the different rows of a selectable stored procedure using
Delphi?

When working with a query, I can go through the resulset step by step with:

WHILE NOT Query.EOF
Extract my data...
Query.Next

How is this done using an SP
Is there an example available?

Florian