Subject | RE: [IBO] migrating from Interbase/BDE to Interbase/IBO |
---|---|
Author | Alan McDonald |
Post date | 2004-06-07T07:08:48Z |
> before insert, I see the following sequence in the grid:If you are using SQLExplorer to get this result from the BDE-Interbase
> - 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
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