1 |
< |
FBINTF Change Log version (1.1-1) Mon, 26 Feb 2018 11:11:53 +0000 |
1 |
> |
FBINTF Change Log version (1.1-2) Tue, 03 Apr 2018 11:49:59 +0100 |
2 |
> |
|
3 |
> |
1. Firebird.pas: {$OBJECTCHECKS OFF} added to file to avoid runtime error when |
4 |
> |
program compiled with -CR command line switch. |
5 |
> |
|
6 |
> |
2. IServiceManager additions (informational): |
7 |
> |
function getProtocol: TProtocol; |
8 |
> |
function getPortNo: AnsiString; |
9 |
> |
|
10 |
> |
3. IServiceManager improved error handling. Interfaces changed: |
11 |
> |
function Start(Request: ISRB; RaiseExceptionOnError: boolean=true): boolean; |
12 |
> |
function Query(SQPB: ISQPB; Request: ISRB; RaiseExceptionOnError: boolean=true) :IServiceQueryResults; overload; |
13 |
> |
function Query(Request: ISRB; RaiseExceptionOnError: boolean=true) :IServiceQueryResults; overload; |
14 |
> |
|
15 |
> |
4. IAttachment addition (informational) |
16 |
> |
function GetSecurityDatabase: AnsiString; |
17 |
> |
|
18 |
> |
5. IStatement: performance counters now updated after each Fetch. GetPerfStatistics |
19 |
> |
thus now returns accumulated stats for a select statement from opening a cursor |
20 |
> |
up to the last fetch. |
21 |
> |
|
22 |
> |
6. DARWIN: uloadlibrary.inc bug fix. Many thanks to Luigi Naimi for correcting |
23 |
> |
the problem. |
24 |
> |
|
25 |
> |
7. Type change: "TPerfCounters = array[TPerfStats] of Int64". Note "Int64" |
26 |
> |
replaces deprecated "comp" type. |
27 |
> |
|
28 |
> |
10. Testsuite Test10 updated to include thread synchronisation for event reporting. |
29 |
> |
|
30 |
> |
|
31 |
> |
FBINTF Change Log version (1.1-1) Tue, 27 Feb 2018 16:51:16 +0000 |
32 |
|
|
33 |
|
1. IBUtils.QuoteIdentifierIfNeeded: Add check for space character. |
34 |
|
|