1 |
+ |
IBX Change Log version (2.4-3 Build 12847) Mon, 18 Oct 2021 09:35:36 +0100 |
2 |
+ |
|
3 |
+ |
1. Add try-..except check when initially loading library in IDE. This should |
4 |
+ |
ensure that IDE continues to load even when a failure occurs in IBX load |
5 |
+ |
library. |
6 |
+ |
|
7 |
+ |
2. IBXScript: now recognises a CASE...END block within a stored procedure and |
8 |
+ |
hence will correctly detect end of the outer containing block when the block |
9 |
+ |
contains a SELECT ... CASE ... END construct. |
10 |
+ |
|
11 |
+ |
3. IBExtract: some further tidying up to remove extraneous white space. |
12 |
+ |
|
13 |
+ |
4. IBCustomDataSet: DefaultFieldClasses array declaration updated to avoid compile time |
14 |
+ |
errors when extra elements are added to DB.TFieldType. |
15 |
+ |
|
16 |
+ |
5. IBUpdate: updated to reflect changes to ISQLParam. |
17 |
+ |
|
18 |
+ |
6. IBXScript: now correctly parses a DECLARE statement which includes a quoted string. |
19 |
+ |
|
20 |
+ |
7. IBExtract: for ODS >=13, increment generator value by one for ALTER SEQUENCE statement. |
21 |
+ |
|
22 |
+ |
IBX Change Log version (2.4-2 Build 12773) Mon, 23 Aug 2021 11:59:42 +0100 |
23 |
+ |
|
24 |
+ |
1. TIBDatabaseInfo: review and tidy-up of property types. Most widen to int64 with the |
25 |
+ |
exception of those defined to be one byte wide e.g. DBImplementationNo. |
26 |
+ |
|
27 |
+ |
2. TIBSQL: Batch Update/Insert support added. |
28 |
+ |
|
29 |
+ |
3. TIBStoredProc: when generating the SQL, the value of the StoredProcName property |
30 |
+ |
is no longer automatically converted to upper case when it is syntactically a |
31 |
+ |
SQL Identifier. This is to support the use of stored procedures defined e.g. |
32 |
+ |
as CREATE PROCEDURE "iCASE". |
33 |
+ |
|
34 |
+ |
There could be a backwards compatibility issue when the StoredProcName was entered |
35 |
+ |
manually at design time. That is not selected from the drop down list. If the |
36 |
+ |
StoredProcName is entered in mixed case and the procedure was declared e.g. as |
37 |
+ |
CREATE PROCEDURE iCASE, then the SQL generation will be incorrect. You should |
38 |
+ |
ensure that the value of the StoredProcName is all upper case, unless it was |
39 |
+ |
declared under dialect 3 and explicitly as mixed case (i.e. delimited by double |
40 |
+ |
quotes). |
41 |
+ |
|
42 |
+ |
Note that when a stored procedure name was declared delimited in double quotes, |
43 |
+ |
as in the first example above, the value of the StoredProcName property must not |
44 |
+ |
include the delimiters (double quotes). |
45 |
+ |
|
46 |
+ |
4. IBXUpgradeConfFile: an exception is now raised if a patch file specified in |
47 |
+ |
upgrade.conf was not found. This replaces silently ignoring the problem. |
48 |
+ |
|
49 |
+ |
5. TIBLocalDBSupport: new property "SectionHeaderTemplate". This defaults to |
50 |
+ |
'Version.%.3d' and is used to generate the section header names (for a given |
51 |
+ |
version no.) in the upgrade.conf file. |
52 |
+ |
|
53 |
+ |
IBX Change Log version (2.4-1 Build 12550) Wed, 23 Jun 2021 13:59:14 +0100 |
54 |
+ |
|
55 |
+ |
1. -c command line option added to fbsql example program. Used to set connection |
56 |
+ |
character set. |
57 |
+ |
|
58 |
|
IBX Change Log version (2.4-0 Build 12543) Mon, 22 Feb 2021 11:00:08 +0000 |
59 |
|
|
60 |
|
1. Firebird 4 support added. |