Subject Re: [IBO] How to obtain a column before query?
Author Helen Borrie
At 10:48 AM 28/05/2004 -0300, you wrote:
>Hi
>
>How I do to obtain all columns names before execute a query in recordset?
>I´m using IB_Query and IB_Cursor ...

If you mean a simple SELECT * FROM query: prepare the query and iterate
through the Fields[] array, reading the SQLName property of each ib_column
object in the array.

Otherwise, I don't know what you mean. A query is wrapped around a SELECT
statement.

Helen