Subject Re: [IBO] IB_Query phenomenom
Author guido.klapperich@t-online.de
> You might consider using TIB_Cursor and display the results of the current
> fetch in a cursor grid, if reading is all you need to do...if you need to
> perform DML based on the output, you would definitely need to read the grid
> (using props and methods of TStringGrid) and push the values over to a
> TIB_DSQL as parameters...
>

Reading is all I need, but I need many properties of the IB_Grid, which are
missing in the CursorGrid, for example IndicateRow, IndicateBoolean, TitleFont and
so on. So I have to use a query.

>
> Can you clarify exactly what you are looking for as output to this query?
>

The problem is, that I have to display the data of three or more rows of the table
FOLLOWUPDISCOUNTS_MP in one row. My boss want it so, not me. Therefore I built the
SQL-Statement dynamicly and all works fine with IB_Cursor. But my boss doesn't
like the outfit of the IB_CursorGrid and therefore I have to use a IB_Grid,
somehow ...