--- ibx/trunk/fbintf/changelog 2018/01/18 14:37:53 111 +++ ibx/trunk/fbintf/changelog 2018/01/22 13:58:11 117 @@ -1,4 +1,4 @@ -FBINTF Change Log version (1.1-1) Tue, 16 Jan 2018 16:49:37 +0000 +FBINTF Change Log version (1.1-1) Sat, 20 Jan 2018 11:31:21 +0000 1. IBUtils.QuoteIdentifierIfNeeded: Add check for space character. @@ -7,12 +7,35 @@ FBINTF Change Log version function GetDefaultCharSetID: integer; These return, respectively, true if a connection default character set was - specified and the character set id of the connection defautl character set. + specified and the character set id of the connection default character set. + The DefaultCharSetID is cached when the connection is opened and hence does not + require a database lookup. 3. Avoid exception when a text blob is a stored procedure parameter. 4. Update test suite to include a test for a stored proc returning a text blob. +5. IAttachment: add + function GetRemoteProtocol: AnsiString; + function GetODSMajorVersion: integer; + function GetODSMinorVersion: integer; + + These results are cached when the connection is opened and hence do not + require a database lookup. + +6. IAttachment: add "function GetConnectString: AnsiString;" This returns the + connect string used to create/connect to the database. + +7. IAttachment: Create Database using SQL statement. The username and password + are now extracted and used to populate a DPB made available via IAttachment.getDPB. + It is now possible to use IAttachment disconnect/connect to reconnect to + a database for which the initial connection was established by a create + database sql statement. + +8. Update Test 1 to test 5, 6 and 7 above. + +9. IBUtils code tidy up. + FBINTF Change Log version (1.1-0) Sun, 07 Jan 2018 15:20:02 +0000 1. Fix issues with setting SQL Param values using SetAsString with Numeric types.