Subject Re: [IBO] TIBOTable and Order by
Author Artur Anjos
Hi Don,

Don Gollahon wrote:
>>The reason I'm using TIBOTable is it will be accessing a temp table
>>that is created for doing a report. The table name will therefore
>>change.

Why don't you use a TIBOQuery, with SQL like this one:

'Select * from'
'YourTable'

Setting the table name will be as easy as TIBOQ.SQL[1] := TableName, and
you will be abble to add Order By at any time.

As a small note, 'creating and deleting tables' on the fly is a bad
practice in Firebird. Maybe you should focus on another method of doing
what you want ?

Artur