ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/fbintf/changelog
(Generate patch)

Comparing ibx/trunk/fbintf/changelog (file contents):
Revision 338 by tony, Wed Jun 9 12:07:56 2021 UTC vs.
Revision 347 by tony, Mon Sep 20 22:08:20 2021 UTC

# Line 1 | Line 1
1 < FBINTF Change Log  version          (1.2-1 Build 12546) Wed, 09 Jun 2021 11:57:29 +0100
1 > FBINTF Change Log  version          (1.3-2 Build 12798) Mon, 20 Sep 2021 12:42:46 +0100
2 >
3 > 1. TFBClientAPI.GetProcAddr. Add check for nil reference.
4 >
5 > 2. IStatement: new methods:
6 >    procedure SetStaleReferenceChecks(Enable:boolean); {default true}
7 >    function GetStaleReferenceChecks: boolean;
8 >
9 >   In previous versions, stale reference checks were always enabled. This allows the
10 >   user to disable them on a per statement basis. Note this can risk out-of-date
11 >   statement BLR. See User Guide.
12 >
13 > FBINTF Change Log  version          (1.3-1 Build 12776) Mon, 23 Aug 2021 11:09:33 +0100
14 >
15 > 1. Integer decodes in information blocks (e.g. IDBInfoItem) widened from 32 bit to 64-bit integers.
16 >
17 > 2. Support for inline blob encoding. Blob values pass using the "SetAsString" method
18 >   will now be encoded inline (i.e. as part of the parameter buffer) if they are
19 >   shorter than a pre-set limit. Longer values continue to be saved as blobs as a
20 >   separate server interaction. This is intended as a performance optimisation.
21 >
22 >   The pre-set limit defaults to 8192 bytes and can be inspected/modified using the new
23 >   IAttachment interface functions:
24 >
25 >    function GetInlineBlobLimit: integer;
26 >    procedure SetInlineBlobLimit(limit: integer);
27 >
28 > 3. Support for Firebird 4 IBatch interface added. This is largely transparent to the API
29 >   user as the functionality is embedded in the implementation of the IStatement
30 >   interface. Three new functions are defined:
31 >
32 >    procedure AddToBatch;
33 >    function ExecuteBatch(aTransaction: ITransaction=nil): IBatchCompletion;
34 >    procedure CancelBatch;
35 >    function GetBatchCompletion: IBatchCompletion;
36 >    function GetBatchRowLimit: integer;
37 >    procedure SetBatchRowLimit(aLimit: integer);
38 >
39 >   Also
40 >
41 >    function IsInBatchMode: boolean;        {true after call to execute(eaDefer)}
42 >    function HasBatchMode: boolean;         {true if and only if IBatch Supported}
43 >
44 >   For more information see the User Guide.
45 >
46 > 4. Default error message contents. Now aligned with User Guide section 10.2 i.e. error messages
47 >   provided with the EIBInterBaseError now include all three parts.
48 >
49 > 5. Firebird.pas and include files updated to Firebird 4.0.0
50 >
51 > 6. New IStatement method: function GetSQLStatementTypeName: AnsiString;
52 >   Returns SQL Statement type as a text string;
53 >
54 > 7. ISQLData.AsInteger and AsInt64 now use "Round" to convert a float field to
55 >   an integer instead of "trunc". This is for compatibility with TFloatField.AsInteger.
56 >
57 > FBINTF Change Log  version          (1.2-1 Build 12552) Wed, 09 Jun 2021 13:05:40 +0100
58  
59   1. Big fix for Firebird 4.0. A internal change in Firebird 4.0.0 from RC1 flushed out a
60     typo in FB30Statement.pas that caused an unknown parameter error.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines