1 |
< |
FBINTF Change Log version (1.1-0) Fri, 15 Dec 2017 12:15:34 +0000 |
1 |
> |
FBINTF Change Log version (1.1-1) Mon, 26 Feb 2018 11:11:53 +0000 |
2 |
> |
|
3 |
> |
1. IBUtils.QuoteIdentifierIfNeeded: Add check for space character. |
4 |
> |
|
5 |
> |
2. IAttachment: add two new methods |
6 |
> |
function HasDefaultCharSet: boolean; |
7 |
> |
function GetDefaultCharSetID: integer; |
8 |
> |
|
9 |
> |
These return, respectively, true if a connection default character set was |
10 |
> |
specified and the character set id of the connection default character set. |
11 |
> |
The DefaultCharSetID is cached when the connection is opened and hence does not |
12 |
> |
require a database lookup. |
13 |
> |
|
14 |
> |
3. Avoid exception when a text blob is a stored procedure parameter. |
15 |
> |
|
16 |
> |
4. Update test suite to include a test for a stored proc returning a text blob. |
17 |
> |
|
18 |
> |
5. IAttachment: add |
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. |
26 |
> |
|
27 |
> |
6. IAttachment: add "function GetConnectString: AnsiString;" This returns the |
28 |
> |
connect string used to create/connect to the database. |
29 |
> |
|
30 |
> |
7. IAttachment: Create Database using SQL statement. The username and password |
31 |
> |
are now extracted and used to populate a DPB made available via IAttachment.getDPB. |
32 |
> |
It is now possible to use IAttachment disconnect/connect to reconnect to |
33 |
> |
a database for which the initial connection was established by a create |
34 |
> |
database sql statement. Available in FPC only. |
35 |
> |
|
36 |
> |
8. Update Test 1 to test 5, 6 and 7 above. |
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. |
65 |
|
Scale is no longer ignored. |