1 |
+ |
IBX Change Log version (2.4-2 Build 12773) Mon, 23 Aug 2021 11:59:42 +0100 |
2 |
+ |
|
3 |
+ |
1. TIBDatabaseInfo: review and tidy-up of property types. Most widen to int64 with the |
4 |
+ |
exception of those defined to be one byte wide e.g. DBImplementationNo. |
5 |
+ |
|
6 |
+ |
2. TIBSQL: Batch Update/Insert support added. |
7 |
+ |
|
8 |
+ |
3. TIBStoredProc: when generating the SQL, the value of the StoredProcName property |
9 |
+ |
is no longer automatically converted to upper case when it is syntactically a |
10 |
+ |
SQL Identifier. This is to support the use of stored procedures defined e.g. |
11 |
+ |
as CREATE PROCEDURE "iCASE". |
12 |
+ |
|
13 |
+ |
There could be a backwards compatibility issue when the StoredProcName was entered |
14 |
+ |
manually at design time. That is not selected from the drop down list. If the |
15 |
+ |
StoredProcName is entered in mixed case and the procedure was declared e.g. as |
16 |
+ |
CREATE PROCEDURE iCASE, then the SQL generation will be incorrect. You should |
17 |
+ |
ensure that the value of the StoredProcName is all upper case, unless it was |
18 |
+ |
declared under dialect 3 and explicitly as mixed case (i.e. delimited by double |
19 |
+ |
quotes). |
20 |
+ |
|
21 |
+ |
Note that when a stored procedure name was declared delimited in double quotes, |
22 |
+ |
as in the first example above, the value of the StoredProcName property must not |
23 |
+ |
include the delimiters (double quotes). |
24 |
+ |
|
25 |
+ |
4. IBXUpgradeConfFile: an exception is now raised if a patch file specified in |
26 |
+ |
upgrade.conf was not found. This replaces silently ignoring the problem. |
27 |
+ |
|
28 |
+ |
5. TIBLocalDBSupport: new property "SectionHeaderTemplate". This defaults to |
29 |
+ |
'Version.%.3d' and is used to generate the section header names (for a given |
30 |
+ |
version no.) in the upgrade.conf file. |
31 |
+ |
|
32 |
|
IBX Change Log version (2.4-1 Build 12550) Wed, 23 Jun 2021 13:59:14 +0100 |
33 |
|
|
34 |
|
1. -c command line option added to fbsql example program. Used to set connection |