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

Comparing:
ibx/trunk/fbintf/changelog (file contents), Revision 292 by tony, Fri Apr 17 11:30:36 2020 UTC vs.
ibx/branches/udr/changelog (file contents), Revision 385 by tony, Mon Jan 17 15:56:35 2022 UTC

# Line 1 | Line 1
1 < FBINTF Change Log  version          (1.1-5 Build 12034) Fri, 17 Apr 2020 12:28:42 +0100
1 > FBINTF Change Log  version          (1.4-0 Build 13090) Fri, 14 Jan 2022 23:07:28 +0000
2 >
3 > 1. Support package fbudr added for support of User Defined Routines (UDRs), and package
4 >   fbudrtestbed for client side debugging of UDR libraries.
5 >
6 > 2. Package layout changed with introduction of udr support. IB*.pas files moved from
7 >    root directory to "client". IBHeader move to "Client".
8 >
9 > 3. Delphi packages: all packages now compile .dcp and .bpi files to either
10 >   fbintf\Win32\Debug or fbintf\Win64\Debug by default. Please remove any pre-existing
11 >   fbintf.dcp and fbintf.bpi files from other locations.
12 >
13 > 4. Client side journaling support added. Interface changes
14 >   IAttachment
15 >    function JournalingActive: boolean;
16 >    function GetJournalOptions: TJournalOptions;
17 >    function StartJournaling(aJournalLogFile: AnsiString): integer; overload;
18 >    function StartJournaling(aJournalLogFile: AnsiString; Options: TJournalOptions): integer; overload;
19 >    function StartJournaling(S: TStream; Options: TJournalOptions): integer; overload;
20 >    procedure StopJournaling(RetainJournal: boolean);
21 >
22 > 5. Transactions may now be given a local transaction name:
23 >   IFirebirdAPI
24 >     function StartTransaction(Attachments: array of IAttachment;
25 >             TPB: array of byte; DefaultCompletion: TTransactionCompletion=taCommit): ITransaction; overload;
26 >             TPB: array of byte; DefaultCompletion: TTransactionCompletion=taCommit;
27 >             aName: AnsiString=''): ITransaction; overload;
28 >     function StartTransaction(Attachments: array of IAttachment;
29 >             TPB: ITPB; DefaultCompletion: TTransactionCompletion=taCommit): ITransaction; overload;
30 >             TPB: ITPB; DefaultCompletion: TTransactionCompletion=taCommit;
31 >             aName: AnsiString=''): ITransaction; overload;
32 >
33 >   IAttachment
34 >    function StartTransaction(TPB: array of byte; DefaultCompletion: TTransactionCompletion=taCommit): ITransaction; overload;
35 >    function StartTransaction(TPB: ITPB; DefaultCompletion: TTransactionCompletion=taCommit): ITransaction; overload;
36 >    function StartTransaction(TPB: array of byte;
37 >                              DefaultCompletion: TTransactionCompletion=taCommit;
38 >                              aName: AnsiString=''): ITransaction; overload;
39 >    function StartTransaction(TPB: ITPB;
40 >                              DefaultCompletion: TTransactionCompletion=taCommit;
41 >                              aName: AnsiString=''): ITransaction; overload;
42 >
43 >  ITransaction
44 >    function GetTransactionName: AnsiString;
45 >    procedure SetTransactionName(aValue: AnsiString);
46 >
47 > 6. Additional Transaction information
48 >     ITPB.function AsText: AnsiString; {Returns TPB as a text string}
49 >
50 >   ITransaction
51 >     function GetDefaultCompletion: TTransactionCompletion;
52 >     function GetJournalingActive(attachment: IAttachment): boolean; {attachment must be specified when multi-database transaction}
53 >
54 > 7. New IAttachment helper functions
55 >     function HasTable(aTableName: AnsiString): boolean;
56 >     function HasFunction(aFunctionName: AnsiString): boolean;
57 >     function HasProcedure(aProcName: AnsiString): boolean;
58 >     function GetAttachmentID: integer;
59 >     function GetCharSetID: integer;
60 >
61 > 8. IStatement: if the BatchRowLimit is set to maxint, the maximum possible buffer size
62 >   will be allocted for batch operations.
63 >
64 > 9. IStatement, IColumnMetaData and ISQLParam all now consistently provide:
65 >    function GetStatement: IStatement;
66 >    function GetTransaction: ITransaction;
67 >    function GetAttachment: IAttachment;
68 >
69 > 10. Internal: a more disciplined approach to the handling of Firebird.IReferenceCounted
70 >    interfaces.
71 >
72 > 11. New interface type: IFBNumeric. IFBNumeric is implemented in the unit FBNumeric
73 >    and concentrates all handling of Fixed Point numbers. New ISQLItem and ISQLParam
74 >    functions getAsNumeric and setAsNumeric allow for direct retrival and manipulation
75 >    of numerics without loss of precision.
76 >
77 > 12. TryStrToNumeric and NumericToDouble moved from IBUtils to FBNumeric.
78 >
79 > 13. ISQLParams new method "Clear"
80 >
81 > 14. Connection Info (e.g. ODS Version, Remote Protocol) now retrieved on first
82 >    request rather than on attachment connect.
83 >
84 > 15. IStatus.IBDataBaseErrorMessages now defaults to [ShowIBMessage]. This reflects the
85 >    fact that SQLCodes are soon to be deprecated. In the future, the other options
86 >    will be silently ignored if SQLCode support is not present in the Firebird
87 >    Client library.
88 >
89 >
90 > FBINTF Change Log  version          (1.3-3 Build 12935) Mon, 06 Dec 2021 23:17:13 +0000
91 >
92 > 1. Fix compile error with fpc trunk (3.3.1 and later), due to type change to tzname in "unix" unit.
93 >
94 > 2. Remove constraint in IAttachment.HasScollableCursors that returned false when
95 >   using remote protocol. Scrollable cursors with remote database expected to
96 >   be support for Firebird 4.0.1 onwards. Note: Firebird 4.0.0 will return
97 >   a not supported error.
98 >
99 > 3. IStatement: new function;
100 >    TStatementFlag = (stHasCursor,stRepeatExecute,stScrollable);
101 >    TStatementFlags = set of TStatementFlag;
102 >    function GetFlags: TStatementFlags;
103 >
104 > 4. Revised behaviour for IStatement.ExecuteQuery in order to preserve backwards
105 >   compatibility.
106 >   In Firebird 5, Update..Returning may returns multiple rows and hence the statemen
107 >   type changes from ExecProcedure to Select. So that ExecuteQuery can continue
108 >   to be used with Update...Retruning statements that return a singleton row,
109 >   instead of raising an exception when ExecuteQuery is used with a (SELECT) statement,
110 >   it will open the cursor and return the first row only.
111 >
112 > 5. ITransaction: new functions:
113 >    function GetIsReadOnly: boolean;
114 >    function GetTransactionID: integer;
115 >    function GetTrInformation(Requests: array of byte): ITrInformation; overload;
116 >    function GetTrInformation(Request: byte): ITrInformation; overload;
117 >
118 >   The latter two return the Transaction Information block. The first two extract
119 >   information the Transaction Information block
120 >
121 > 6. New function TSQLTokeniser.ReadCharacters
122 >   Used internally.
123 >
124 > 7. IStatement: GetProcessedSQL bug fix. No longer raises and error if SQL contains
125 >   parameter placeholders instead of named parameters.
126 >
127 > 8. ITransaction (Firebird 3 and later): An exception raised when freeing an underlying
128 >   transaction handle is now ignored if Rollback/Commit is called with Force=true
129 >
130 > 9. Tidy up of exception handling code. Under the legacy API, fb_interpret is now
131 >   used to get an IBError Message instead of isc_interprete.
132 >
133 > 10. Internal tidyup. Native code now used for decoding integers and the events
134 >    buffer. Avoids dependencies on fbclient functions isc_portable_integer,
135 >    isc_event_block and isc_event_counts.
136 >
137 > 11. New IAttachment function
138 >     function GetAttachmentID: integer;
139 >
140 > 12. Internal changes to TFBClientAPI, TFBAttachment and TFBTransaction and TFB30
141 >    subclasses to enable UDR support.
142 >
143 > FBINTF Change Log  version          (1.3-2 Build 12889) Sun, 24 Oct 2021 13:49:28 +0100
144 >
145 > 1. TFBClientAPI.GetProcAddr. Add check for nil reference.
146 >
147 > 2. IStatement: new methods:
148 >    procedure SetStaleReferenceChecks(Enable:boolean); {default true}
149 >    function GetStaleReferenceChecks: boolean;
150 >
151 >   In previous versions, stale reference checks were always enabled. This allows the
152 >   user to disable them on a per statement basis. Note this can risk out-of-date
153 >   statement BLR. See User Guide.
154 >
155 > 3. IBUtils: TSQLwithNamedParamsTokeniser now recognises a CASE...END block within a
156 >   stored procedure and hence avoids replacing named parameters within a containing
157 >   BEGIN..END block.
158 >
159 > 4. ISQLParam: using a string value to set an integer field with a scale factor of
160 >   zero is now treated as a special case to avoid the risk of floating point
161 >   rounding errors affecting pure integers.
162 >
163 > 5. ISQLParam:  Review and tidy-up of SetAsString for numeric types.
164 >
165 > 6. ISQLParam is now subclassed from IParamMetaData, which provides access to the mutable
166 >   SQL Parameter metadata (methods moved from ISQLParam).
167 >
168 > 7. ISQLParam: new method
169 >     function getColMetadata: IParamMetaData;
170 >   This instance of IParamMetaData returns the original column metadata which is unmutable.
171 >   Note: ISQLParam metadata can change after a parameter value has been set e.g when
172 >   setting a VARCHAR column to an integer value.
173 >
174 > 8. IStatement: can now set cursor name when opening a cursor. New overloaded method:
175 >    procedure Prepare(CursorName: AnsiString; aTransaction: ITransaction=nil); overload;
176 >   also IAttachment:
177 >    function Prepare(transaction: ITransaction; sql: AnsiString; aSQLDialect: integer; CursorName: AnsiString=''): IStatement; overload;
178 >    function Prepare(transaction: ITransaction; sql: AnsiString; CursorName: AnsiString=''): IStatement; overload;
179 >    function PrepareWithNamedParameters(transaction: ITransaction; sql: AnsiString;
180 >                       aSQLDialect: integer; GenerateParamNames: boolean=false;
181 >                       CaseSensitiveParams: boolean = false; CursorName: AnsiString=''): IStatement; overload;
182 >    function PrepareWithNamedParameters(transaction: ITransaction; sql: AnsiString;
183 >                       GenerateParamNames: boolean=false;
184 >                       CaseSensitiveParams: boolean = false; CursorName: AnsiString=''): IStatement; overload;
185 >
186 > 9. Support for scrollable cursors added. New/updated methods:
187 >   IAttachment:
188 >    function HasScollableCursors: boolean;
189 >    function OpenCursor(transaction: ITransaction; sql: AnsiString; aSQLDialect: integer;
190 >                             Scrollable: boolean=false): IResultSet; overload;
191 >    function OpenCursor(transaction: ITransaction; sql: AnsiString; Scrollable: boolean=false): IResultSet; overload;
192 >    function OpenCursor(transaction: ITransaction; sql: AnsiString; aSQLDialect: integer; Scrollable: boolean;
193 >                             params: array of const): IResultSet; overload;
194 >    function OpenCursor(transaction: ITransaction; sql: AnsiString; Scrollable: boolean=false;
195 >                             params: array of const): IResultSet; overload;
196 >    function OpenCursorAtStart(transaction: ITransaction; sql: AnsiString; aSQLDialect: integer; Scrollable: boolean;
197 >                             params: array of const): IResultSet; overload;
198 >    function OpenCursorAtStart(transaction: ITransaction; sql: AnsiString; aSQLDialect: integer;
199 >                             Scrollable: boolean=false): IResultSet; overload;
200 >    function OpenCursorAtStart(transaction: ITransaction; sql: AnsiString; Scrollable: boolean=false): IResultSet; overload;
201 >    function OpenCursorAtStart(transaction: ITransaction; sql: AnsiString; Scrollable: boolean;
202 >                             params: array of const): IResultSet; overload;
203 >    function OpenCursorAtStart(sql: AnsiString; Scrollable: boolean=false): IResultSet; overload;
204 >    function OpenCursorAtStart(sql: AnsiString; Scrollable: boolean;
205 >                             params: array of const): IResultSet; overload;
206 >   IStatement:
207 >     function OpenCursor(Scrollable: boolean; CursorName: AnsiString =''; aTransaction: ITransaction=nil): IResultSet; overload;
208 >   IResultSet:
209 >    function FetchPrior: boolean; {fetch previous record}
210 >    function FetchFirst:boolean; {fetch first record}
211 >    function FetchLast: boolean; {fetch last record}
212 >    function FetchAbsolute(position: Integer): boolean; {fetch record by its absolute position in result set}
213 >    function FetchRelative(offset: Integer): boolean; {fetch record by position relative to current}
214 >    function IsBof: boolean;
215 >
216 > 10. IArray: tidyup of SetAsString method to ensure correct handling of fixed point numbers.
217 >
218 > 11. IBUtils: TSQLTokeniser. CRLF now combined by low level parser into sqltEOL token. This
219 >    may be noticeable when a line separator occurs inside quoted text. The quoted text
220 >    output by the tokeniser will now use the platform specific lineEnding regardless
221 >    of whether the input uses the CRLF or LF as a line separator.
222 >
223 > 12. IStatement, IResultsSet: Support for scrollable cursors added (note: local databases only)
224 >
225 >
226 > FBINTF Change Log  version          (1.3-1 Build 12776) Mon, 23 Aug 2021 11:09:33 +0100
227 >
228 > 1. Integer decodes in information blocks (e.g. IDBInfoItem) widened from 32 bit to 64-bit integers.
229 >
230 > 2. Support for inline blob encoding. Blob values pass using the "SetAsString" method
231 >   will now be encoded inline (i.e. as part of the parameter buffer) if they are
232 >   shorter than a pre-set limit. Longer values continue to be saved as blobs as a
233 >   separate server interaction. This is intended as a performance optimisation.
234 >
235 >   The pre-set limit defaults to 8192 bytes and can be inspected/modified using the new
236 >   IAttachment interface functions:
237 >
238 >    function GetInlineBlobLimit: integer;
239 >    procedure SetInlineBlobLimit(limit: integer);
240 >
241 > 3. Support for Firebird 4 IBatch interface added. This is largely transparent to the API
242 >   user as the functionality is embedded in the implementation of the IStatement
243 >   interface. Three new functions are defined:
244 >
245 >    procedure AddToBatch;
246 >    function ExecuteBatch(aTransaction: ITransaction=nil): IBatchCompletion;
247 >    procedure CancelBatch;
248 >    function GetBatchCompletion: IBatchCompletion;
249 >    function GetBatchRowLimit: integer;
250 >    procedure SetBatchRowLimit(aLimit: integer);
251 >
252 >   Also
253 >
254 >    function IsInBatchMode: boolean;        {true after call to execute(eaDefer)}
255 >    function HasBatchMode: boolean;         {true if and only if IBatch Supported}
256 >
257 >   For more information see the User Guide.
258 >
259 > 4. Default error message contents. Now aligned with User Guide section 10.2 i.e. error messages
260 >   provided with the EIBInterBaseError now include all three parts.
261 >
262 > 5. Firebird.pas and include files updated to Firebird 4.0.0
263 >
264 > 6. New IStatement method: function GetSQLStatementTypeName: AnsiString;
265 >   Returns SQL Statement type as a text string;
266 >
267 > 7. ISQLData.AsInteger and AsInt64 now use "Round" to convert a float field to
268 >   an integer instead of "trunc". This is for compatibility with TFloatField.AsInteger.
269 >
270 > FBINTF Change Log  version          (1.2-1 Build 12552) Wed, 09 Jun 2021 13:05:40 +0100
271 >
272 > 1. Big fix for Firebird 4.0. A internal change in Firebird 4.0.0 from RC1 flushed out a
273 >   typo in FB30Statement.pas that caused an unknown parameter error.
274 >
275 > FBINTF Change Log  version          (1.2-0 Build 12520) Fri, 19 Feb 2021 13:27:23 +0000
276 >
277 > 1. Imported (Firebird) constants updated for Firebird 4.
278 >
279 > 2. Firebird.pas from Firebird 4 integrated into source code tree.
280 >
281 > 3. Added Support for TIMETAMP WITH TIME ZONE and TIME WITH TIME ZONE data types.
282 >
283 > 4. Added Support for SQL_DEC16, SQL_DEC34 and extended NUMERIC precision.
284 >
285 > 5. New unit 'FBClientLib.pas' added and provides new interface IFBIMasterProvider.
286 >   QueryInterface may be used to coerce this interface from IFirebirdAPI. The
287 >   interface provides a single method "function GetIMasterIntf: IMaster". This provides
288 >   type safe access to the Firebird IMaster interface and avoids the need to turn
289 >   off object checks when coercing "function GetIMaster: TObject" to IMaster.
290 >
291 > 6. New IFirebirdAPI Calls:
292 >    function HasLocalTZDB: boolean;
293 >    function HasTimeZoneSupport: boolean;
294 >    function HasExtendedTZSupport: boolean;
295 >    procedure SQLDecFloatEncode(aValue: tBCD; SQLType: cardinal; bufptr: PByte);
296 >    function SQLDecFloatDecode(SQLType: cardinal; scale: integer; bufptr: PByte): tBCD;
297 >
298 > 7. New IAttachment Calls:
299 >    function HasDecFloatSupport: boolean;
300 >    function GetTimeZoneServices: ITimeZoneServices;
301 >    function HasTimeZoneSupport: boolean;
302 >
303 > 8. New Interface ITimeZoneServices.
304 >
305 > 9. New ISQLData API Calls:
306 >    procedure GetAsDateTime(var aDateTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID); overload;
307 >    procedure GetAsDateTime(var aDateTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString); overload;
308 >    procedure GetAsTime(var aTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID; OnDate: TDateTime); overload;
309 >    procedure GetAsTime(var aTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString; OnDate: TDateTime); overload;
310 >    function GetAsUTCDateTime: TDateTime;
311 >    function GetAsBCD: tBCD;
312 >
313 > 10. New ISQLParam API Calls
314 >    procedure GetAsDateTime(var aDateTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID); overload;
315 >    procedure GetAsDateTime(var aDateTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString); overload;
316 >    procedure GetAsTime(var aTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID; OnDate: TDateTime); overload;
317 >    procedure GetAsTime(var aTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString; OnDate: TDateTime); overload;
318 >    function GetAsUTCDateTime: TDateTime;
319 >    function GetAsBCD: tBCD;
320 >    function GetStatement: IStatement;
321 >    function GetTransaction: ITransaction;
322 >    procedure SetAsTime(aValue: TDateTime; OnDate: TDateTime; aTimeZoneID: TFBTimeZoneID); overload;
323 >    procedure SetAsTime(aValue: TDateTime; OnDate: TDateTime; aTimeZone: AnsiString); overload;
324 >    procedure SetAsDateTime(aValue: TDateTime; aTimeZoneID: TFBTimeZoneID); overload;
325 >    procedure SetAsDateTime(aValue: TDateTime; aTimeZone: AnsiString); overload;
326 >    procedure SetAsUTCDateTime(aUTCTime: TDateTime);
327 >    procedure SetAsBcd(aValue: tBCD);
328 >
329 > 11. New IArray API Calls
330 >    procedure GetAsDateTime(index: array of integer; var aDateTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID); overload;
331 >    procedure GetAsDateTime(index: array of integer; var aDateTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString); overload;
332 >    procedure GetAsTime(index: array of integer; var aTime: TDateTime; var dstOffset: smallint; var aTimezoneID: TFBTimeZoneID; OnDate: TDateTime); overload;
333 >    procedure GetAsTime(index: array of integer; var aTime: TDateTime; var dstOffset: smallint; var aTimezone: AnsiString; OnDate: TDateTime); overload;
334 >    function GetAsUTCDateTime(index: array of integer): TDateTime;
335 >    procedure SetAsDateTime(index: array of integer; aValue: TDateTime; aTimeZoneID: TFBTimeZoneID); overload;
336 >    procedure SetAsDateTime(index: array of integer; aValue: TDateTime; aTimeZone: AnsiString); overload;
337 >    procedure SetAsTime(index: array of integer; aValue: TDateTime; OnDate: TDateTime; aTimeZoneID: TFBTimeZoneID); overload;
338 >    procedure SetAsTime(index: array of integer; aValue: TDateTime; OnDate: TDateTime; aTimeZone: AnsiString); overload;
339 >
340 > 12. Utility functions in IBUtils
341 >    function ParseDateTimeTZString(aDateTimeStr: Ansistring; var aDateTime: TDateTime;
342 >              var aTimezone: AnsiString; aFormatSettings: TFormatSettings; TimeOnly: boolean=false): boolean;
343 >    procedure FBDecodeTime(aTime: TDateTime; var Hour, Minute, Second: word; var DeciMillisecond: cardinal);
344 >    function FBEncodeTime(Hour, Minute, Second, DeciMillisecond: cardinal): TDateTime;
345 >    function FBFormatDateTime(fmt: AnsiString; aDateTime: TDateTime): AnsiString;
346 >    function FormatTimeZoneOffset(EffectiveTimeOffsetMins: integer): AnsiString;
347 >    function DecodeTimeZoneOffset(TZOffset: AnsiString; var dstOffset: integer): boolean;
348 >
349 > 13. IDPB, ITPB and ISPB: new interface method
350 >      function AddByTypeName(ParamTypeName: AnsiString): IDPBItem/ITPBItem/ISPBItem;
351 >    This is used to add a parameter block item by the string equivalent of its
352 >    symbolic type name. e.g. DPB.AddByTypeName('isc_dpb_user_name').AsString := '...'
353 >
354 > 14. IDPBItem/ITPBItem/ISPBItem: new interface method:
355 >      function getParamTypeName: AnsiString;
356 >
357 > 15. fb_shutdown now called before unloading Firebird library. This can avoid a
358 >     SIGEVENT error when a programme using the embeded server is unloaded.
359 >
360 > FBINTF Change Log  version          (1.1-6 Build 12237) Tue, 21 Jul 2020 08:54:21 +0100
361 >
362 > 1. GetImplementationVersion now correctly returns '3.0' for Firebird 3 API
363 >   with a Firebrid 3 client library.
364 >
365 > 2. Linux Only: FIREBIRD environment variable is now checked when loading the client library.
366 >    If a client library path is not explicitly provided and the FIREBIRD environment
367 >    variable is set then the directory given by this variable and any 'lib' subdirectory
368 >    are searched for the Firebird client library. Only if none is found, is the default
369 >    client library used.
370 >
371 > 3.  IUtil.FormatStatus now used to format error messages when using new API
372 >
373 > 4.  Fixed Array SDL: array_desc_scale now correctly encoded as a signed integer.
374 >
375 > 5.  SQL_TEXT handling changed. When the value of an SQL_TEXT (i.e. fixed width string) column is
376 >    returned using GetAsString and the string codepage is UTF8, the string is truncated so
377 >    that the byte length corresponds to the number of characters specified for the column.
378 >    SQL_TEXT strings are no longer automatically trimmed to remove all trailing white space. This is
379 >    correct behaviour but may affect some implementations that relied upon automatic
380 >    trimming of trailing white space.
381 >
382 > 6.  New IFirebirdAPI Calls:
383 >      function GetClientMajor: integer;
384 >      function GetClientMinor: integer;
385 >
386 > 7.  IColumnMetaData and IArrayMetaData: new method
387 >      function GetCharSetWidth: integer;
388 >
389 > FBINTF Change Log  version          (1.1-5 Build 12022) Fri, 17 Apr 2020 10:35:55 +0100
390  
391   1. ISQLParams.GetHasCaseSensitiveParams added. Returns true if param names are
392     case sensitive
# Line 8 | Line 396 | FBINTF Change Log  version          (1.1
396   3. New API Calls:
397          IColumnMetaData.GetStatement
398          IColumnMetaData.GetTransaction
399 <        ISQLData.GetStrLength
399 >        ISQLData.GetStrDataLength
400          IResults.GetStatement
401          IAttachment.OpenBlob (using Blob metadata)
402          IAttachment.OpenArray (using array metadata)

Comparing:
ibx/trunk/fbintf/changelog (property svn:eol-style), Revision 292 by tony, Fri Apr 17 11:30:36 2020 UTC vs.
ibx/branches/udr/changelog (property svn:eol-style), Revision 385 by tony, Mon Jan 17 15:56:35 2022 UTC

# Line 0 | Line 1
1 + native

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines