1 |
< |
FBINTF Change Log version (1.1-0) Thu, 26 Oct 2017 13:46:32 +0100 |
1 |
> |
FBINTF Change Log version (1.1-1) Wed, 24 Jan 2018 10:54:08 +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 |
> |
|
23 |
> |
These results are cached when the connection is opened and hence do not |
24 |
> |
require a database lookup. |
25 |
> |
|
26 |
> |
6. IAttachment: add "function GetConnectString: AnsiString;" This returns the |
27 |
> |
connect string used to create/connect to the database. |
28 |
> |
|
29 |
> |
7. IAttachment: Create Database using SQL statement. The username and password |
30 |
> |
are now extracted and used to populate a DPB made available via IAttachment.getDPB. |
31 |
> |
It is now possible to use IAttachment disconnect/connect to reconnect to |
32 |
> |
a database for which the initial connection was established by a create |
33 |
> |
database sql statement. Available in FPC only. |
34 |
> |
|
35 |
> |
8. Update Test 1 to test 5, 6 and 7 above. |
36 |
> |
|
37 |
> |
9. IBUtils code tidy up. |
38 |
> |
|
39 |
> |
FBINTF Change Log version (1.1-0) Sun, 07 Jan 2018 15:20:02 +0000 |
40 |
|
|
41 |
|
1. Fix issues with setting SQL Param values using SetAsString with Numeric types. |
42 |
|
Scale is no longer ignored. |