--- ibx/trunk/changelog 2015/02/26 10:33:34 21 +++ ibx/trunk/changelog 2015/03/13 10:26:52 23 @@ -1,3 +1,25 @@ +IBX Change Log version (1.2-1) Fri, 13 Mar 2015 11:14:15 +0000 + +1. A new IBControl - TDBControlGrid has been added. TDBControlGrid a lookalike + rather than a clone for the Delphi TDBCrtlGrid. TDBControlGrid is a single column grid + that replicates a TWinControl - typically a TPanel or a TFrame in each row. Each row + correspondes to a row of the linked DataSource. Any data aware control on the + replicated (e.g.) TPanel will then appear to have the appropriate value for the row. + +2. As suggested by Julio Jiménez, a new property "SQLHourGlass" has been added to TIBDatabase. + When set to false (default true), the Hour Glass cursor is surpressed and no cursor change + takes place during database access. This may be useful when there are performance issues with + the change of cursor. Setting the property to false suppresses the change of cursor. + +3. As suggested by Julio Jiménez, a new property "AutoCommit" has been added to TIBDataSet, TIBQuery + and TIBTable. When set to acCommitRetaining (Default: acDisabled), a call is made to + Transaction.CommitRetaining immediately after every Post or Delete. This has the effect of + making all changes permanent immediately rather than when the transaction is explicitly + committed. + +4. Experiental support for the Firebird 3 SQL_BOOLEAN type has been added while still + using the legacy Firebird API. + IBX Change Log version (1.2-0) Thu, 26 Feb 2015 10:34:04 +0000 1. An internal select SQL Parser is now available for TIBCustomDataset descendents.