1 |
< |
IBX Change Log version (2.3-3) Wed, 26 Dec 2018 18:20:57 +0000 |
1 |
> |
IBX Change Log version (2.3-3 Build 11288) Fri, 28 Dec 2018 10:04:17 +0000 |
2 |
|
|
3 |
< |
This is rc1 for 2.2.3. |
3 |
> |
1. New property for TIBDatabase and TIBXServicesConnection. This is "ConfigOverrides" |
4 |
> |
and is used to override the default settings in the client side "firebird.conf" This |
5 |
> |
includes "WireCompression" and "WireCrypt". The value of this property is a "TStrings". |
6 |
> |
Each line of the string list should be a setting in the same format as "firebird.conf". |
7 |
> |
For example "WireCompression = true" in order to request wire compression on the client side. |
8 |
|
|
9 |
< |
1. New property for TIBDatabase and TIBXServicesConnection. This is "WireCompression". |
10 |
< |
If this property is set to true then the Client will request WireCompression for |
11 |
< |
the connection. Note: "WireCompression = true" must be set in the server's |
12 |
< |
"firebird.conf". This property is overridden if "WireCompression = true" is set |
13 |
< |
in the client "firebird.conf" when wire compression is always requested by the client. |
9 |
> |
Note: explicit settings in the client side "firebird.conf" appear to take precedence |
10 |
> |
over settings given in TIBDatabase and TIBXServicesConnection. Many client side settings |
11 |
> |
also require a compatible setting in the server side "firebird.conf". For example |
12 |
> |
"WireCompression = true" must also be set in the server's "firebird.conf" for wire |
13 |
> |
compression to be used. |
14 |
|
|
15 |
< |
IBX Change Log version (2.3-2) Wed, 05 Dec 2018 12:19:23 +0000 |
15 |
> |
Whether or not WireCompression or WireCrypt are in use can be checked using the information |
16 |
> |
returned with the Client/Server protocol version. See ibx/examples/dbadmin and |
17 |
> |
ibx/examples/dbinfo for examples of how to display this information. |
18 |
> |
|
19 |
> |
2. New property for TIBDatabase and TIBXServicesConnection: "WireCompression". This |
20 |
> |
is a "convenience" property. If set the "WireCompression=true" is added to the |
21 |
> |
ConfigOverrides. If unchecked then this setting is removed. |
22 |
> |
|
23 |
> |
IBX Change Log version (2.3-2) Wed, 05 Dec 2018 12:19:23 +0000 |
24 |
|
|
25 |
|
1. Remove need to check for IsMultiThread by providing access to GUI timers via |
26 |
|
IBGUIInterface. Note: master/detail delay timer does not apply to console |