Subject RE: [IBO] migrating from Interbase/BDE to Interbase/IBO
Author Alan McDonald
> before insert, I see the following sequence in the grid:
> - A0
> - A1
> - A3
>
> When I insert a new record with key-value "A2",
> in BDE-Interbase, after insert, I see the following sequence:
> - A0
> - A1
> - A2
> - A3
>
> whereas in IBO-Interbase, after insert, I see the following sequence:
> - A2
> - A0
> - A1
> - A3

If you are using SQLExplorer to get this result from the BDE-Interbase
version, you'll need to remember that BDE has a habit of returning default
order using the PK which is not a standard method of retrieval.
Alan