1 |
+ |
IBX Change Log version (2.5-0 Build 12949) Tue, 07 Dec 2021 11:24:05 +0000 |
2 |
+ |
|
3 |
+ |
1. TIBTransaction: new properties |
4 |
+ |
property TransactionID: integer read GetTransactionID; |
5 |
+ |
property IsReadOnly: boolean read GetIsReadOnly; |
6 |
+ |
{published} |
7 |
+ |
property TransactionName: string read FTransactionName write SetTransactionName; |
8 |
+ |
|
9 |
+ |
2. IBCustomDataset: per row blob and array buffer cached clear before processing |
10 |
+ |
Insert or Update...Returning. This allows blobs and arrays to be returned |
11 |
+ |
by the statement. |
12 |
+ |
|
13 |
+ |
3. TXMLReader moved from IBXScript to package fbintf unit IBUtils. |
14 |
+ |
|
15 |
+ |
4. TransactionName initialised to a newly generated GUID if empty. |
16 |
+ |
|
17 |
+ |
5. New unit: IBJournal. This provides the TIBJournal component which is a wrapper |
18 |
+ |
for the fbintf package's journaling capability. TIBJournal is used to set the |
19 |
+ |
file path and filename for the journal file and to Enabled (start journaling) and |
20 |
+ |
disable (stop journaling). See fbintf/doc/README.ClientSideJournaling.pdf for |
21 |
+ |
more information, and comments in IBJournal.pas. |
22 |
+ |
|
23 |
+ |
6. TIBDatabase.InternalTransaction is now a read only transaction. |
24 |
+ |
|
25 |
|
IBX Change Log version (2.5-0 Build 12933) Mon, 29 Nov 2021 14:59:54 +0000 |
26 |
|
|
27 |
|
1. IBCustomDataset: Modify TISQL component now defaults to GoToFirstRecordOnExecute := true. |