1 |
< |
FBINTF Change Log version (1.1-1) Wed, 24 Jan 2018 10:54:08 +0000 |
1 |
> |
FBINTF Change Log version (1.1-1) Thu, 22 Feb 2018 16:01:13 +0000 |
2 |
|
|
3 |
|
1. IBUtils.QuoteIdentifierIfNeeded: Add check for space character. |
4 |
|
|
19 |
|
function GetRemoteProtocol: AnsiString; |
20 |
|
function GetODSMajorVersion: integer; |
21 |
|
function GetODSMinorVersion: integer; |
22 |
+ |
function GetAuthenticationMethod: AnsiString; |
23 |
|
|
24 |
|
These results are cached when the connection is opened and hence do not |
25 |
|
require a database lookup. |
37 |
|
|
38 |
|
9. IBUtils code tidy up. |
39 |
|
|
40 |
+ |
10. Parameter Block interfaces "find" method. As documented, this should have |
41 |
+ |
returned a nil interface when the item could not be found. Instead, an empty |
42 |
+ |
interface item was returned. "Find" now works as documented and will return |
43 |
+ |
a nil interface if the item cannot be found. |
44 |
+ |
|
45 |
+ |
11. DBInformation: support added for isc_info_active_tran_count and isc_info_creation_date. |
46 |
+ |
|
47 |
+ |
12. DBInformation: New interfaces: IDIRB and IDIRBItem added to support DB Information |
48 |
+ |
requests with additional parameters. This is to enable support for fb_info_page_contents |
49 |
+ |
(return of page contents). Response to fb_info_page_contents returned as |
50 |
+ |
a string with code page CP_NONE. |
51 |
+ |
|
52 |
+ |
13. DBInformation: Support for fb_info_pages_used and fb_info_pages_free added, plus |
53 |
+ |
test suite updated. |
54 |
+ |
|
55 |
+ |
14. DBInformation: Support for fb_info_crypt_key (Firebird 3.0.3 onwards) added as |
56 |
+ |
a string type, and fb_info_conn_flags (Firebird 3.0.3 onwards) added as an integer type. |
57 |
+ |
|
58 |
+ |
15. Service Manager: List of protocols supported expanded to include inet, wnet and xnet. |
59 |
+ |
An overloaded version of IIFirebirdAPI.GetServiceManager also allows a non |
60 |
+ |
default connection port to be specified. |
61 |
+ |
|
62 |
|
FBINTF Change Log version (1.1-0) Sun, 07 Jan 2018 15:20:02 +0000 |
63 |
|
|
64 |
|
1. Fix issues with setting SQL Param values using SetAsString with Numeric types. |