ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/changelog
(Generate patch)

Comparing ibx/trunk/changelog (file contents):
Revision 308 by tony, Sat Jul 18 10:26:30 2020 UTC vs.
Revision 345 by tony, Mon Aug 23 14:22:29 2021 UTC

# Line 1 | Line 1
1 < IBX Change Log  version (2.3-5 Build 12212) Fri, 17 Jul 2020 15:24:08 +0100
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
35 >   character set.
36 >
37 > IBX Change Log  version (2.4-0 Build 12543) Mon, 22 Feb 2021 11:00:08 +0000
38 >
39 > 1. Firebird 4 support added.
40 >
41 > 2. New FB4 data types TIME WITH TIME ZONE, TIMESTAMP WITH TIME ZONE, DECFLOAT and
42 >   extended precision NUMERIC fields are supported.
43 >
44 > 3. TFmtBCDField is used to support access to DECFLOAT and extended precision NUMERIC fields.
45 >
46 > 4. TIBDateTimeField and TIBTimeField are introduced in support of TIMESTAMP WITH TIME ZONE
47 >   and TIME WITH TIME ZONE fields. These inherit from TDateTimeField.
48 >
49 > 5. IBExtract now supports FB4 enhancements:
50 >   - new data types as above
51 >   - Identity column extensions
52 >   - Default user role
53 >   - SQL Security clause for Database, Tables, Procedures, Functions and Triggers
54 >   - Internal Functions
55 >
56 > 6. IBExtract: new event: OnExtractLines.
57 >
58 > 7. IBExtract: revert create trigger to legacy syntax see Firebird CORE-6243, CORE-5545 and DOC-145
59 >
60 > 8. IBXServices: Server version no. parsing now allows any letter before major version number
61 >   and is no longer restricted to 'V' e.g. "LI-T4.0.0.1436 Firebird 4.0 Beta 1"
62 >
63 > 9. TIBDataSet and TIBQuery: new property TZTextOption. Used to determine the default
64 >   format for rendering a time zone.
65 >
66 > 10. TIBDataSet and TIBQuery: new property DefaultTZDate. Used to provide the default date
67 >     to convert TIME WITH TIME ZONE data type values to and from GMT.
68 >
69 > 11. Unit name IBTypes changed to IBInternals. Internal interfaces TIBGUIInterface and TIBTimerInf renamed to
70 >    IIBGUIInterface and IIBTimerInf respectively.
71 >
72 > 12. Constants: DPBPrefix and TPBPrefix moved to IB unit. DPBConstantNames and TPBConstantNames
73 >    now accessible as properties of TIBDatabase and TIBTransaction respectively.
74 >
75 > 13. String Fields: when a fixed character with (CHAR) field is returned, it is now
76 >    truncated to its fixed character width rather than being right padded with
77 >    white space to the maximum data size.
78 >
79 > 14. TIBTable.Empty table. In additional to deleting all records in the underlying
80 >    table, the internal buffers are now also flushed ensuring that the TIBTable is
81 >    also empty.
82 >
83 > 15. TBatchSQLStatementReader: Line buffer is now cleared on call to reset.
84 >
85 > 16. TIBXControlService descendents: DatabaseName may now be set using a database
86 >    connect string. The database name is extracted from the connect string.
87 >
88 > 17. DBControlGrid: Minor bug fixes. avoid AV on form closure, avoid black panel
89 >
90 > 18. TIBExtract: Data type of COMPUTED By columns is no longer included in SQL.
91 >
92 > 19. Local database on Linux and with legacy API and FB 2.5 embedded server: fixed problem with password
93 >    not being present as required.
94 >
95 > 20. IBTreeView split into DBTreeView and IBTreeView. This former is an IBX indepedent
96 >    version that can be customised to work with other database drivers.
97 >
98 > 21. ISQLMonitor: use platform specific LineEnding to delimit messages. Avoids
99 >    unnecessary CR at end of line on Unix platforms.
100 >
101 > 22. ISQLMonitor: Unix: Default semaphore timeout increased from 1 second to 10
102 >    seconds in order to reduce risk of message loss.
103 >
104 > 23. ISQLMonitor: read and write count statistics now available via:
105 >      property TIBSQLMonitor.ReadCount;
106 >      IIBSQLMonitorHook.GetWriteCount: integer;
107 >
108 > 24. ISQLMonitor tidy up and unit split. IPC functions moved to new unit IBIPC.
109 >
110 > IBX Change Log  version (2.3-5 Build 12350) Tue, 25 Aug 2020 16:11:02 +0100
111  
112   1.  TIBStringField: when a string value is read from a dataset buffer, if the
113      number of UTF8 characters exceeds the string size then string is truncated
# Line 10 | Line 119 | IBX Change Log  version (2.3-5 Build 122
119      SQLFilterParams property is assumed to be a SQL condition clause and
120      ANDed into the Where clause of the SQL Select statement provided as a
121      dataset property. Each such SQL condition thus acts as an additional filter
122 <    on the dataset. (Not yet tested)
122 >    on the dataset.
123  
124   3.  The Filtered property inherited from TDataset is no longer used for SQL (server
125      side filters).
126  
127 + 4. IBLookupComboEditBox: Selection should no longer reset to start of text when
128 +   text matches complete entry.
129 +
130 + 5. TIBDataLink: Detail Dataset params not refreshed unless both master and detail
131 +   dataset are active (avoids risk of access violation if master is inactive)
132 +
133 + 6. TIBEvents: Registered property can now be set at design time even if database not open
134 +
135 + 7. TIBEvents: component now correctly re-initialised after call to UnregisterEvents.
136 +   This should prevent "spillover" of events between sessions.
137 +
138 + 8. TIBCustomDataset: GetNextRecord now called when reseting to first record of a unidirectional dataset.
139 +   This should ensure that the internal buffer is set up correctly and avoids
140 +   a duplicate initial row.
141 +
142 + 9. TIBStringField: DataSize now given as byte size of string less trailing any zero character.
143 +   That is, the DataSize should be the field size * character set width. The
144 +   value returned by DataSize is now the same as the Dataset buffer size reserved
145 +   for the field.
146 +
147 + 10. IBExtract: Tidyup of SQL generation. Avoid unnecessary double quotes.
148 +
149 + 11. TIBCustomDataset: Add checks on buffer sizes when copying data from row to field buffer
150 +    and vice-versa. This may result in an exception being raised (correctly) for
151 +    older programs when using dataset fields added to a form and the database has been
152 +    upgraded. For example, computed fields can change from 32-bit to 64-bit integers.
153 +    In such cases, the field needs to be deleted in the IDE fields editor and then
154 +    added back in.
155 +
156 + 12. IBCustomDataSet: CanInsert, CanEdit, CanDelete and CanRefresh updated to return
157 +    false if query contains only white space and not just empty.
158 +
159 + 12. IBCustomDataset: Blob data is now cleared when TDataSet.Cancel is called. This
160 +    should ensure that (e.g.) a TDBMemo is correctly refreshed after a dataset edit
161 +    is cancelled.
162 +
163 + 13. IBCustomDataset: SetArrayIntf should no longer cause an access violation if
164 +    called on a null field.
165 +
166 + 14. IBCustomDataSet: An access violation should no longer occur when calling CancelUpdates
167 +    results in an empty dataTC86                Client side Filtered Dataset    1       X
168 + set.
169 +
170 + 15. IBCustomDataSet: OnUpdateError should now be called in all circumstances when
171 +    a cached update is applied and an exception is raised.
172 +
173 + 16. IBCustomDataSet: Avoid access violation when SetBookmarkData called with nil pointer.
174 +
175 + 17. Console Mode Local Database support: backup/restore should now work correctly.
176 +
177 + 18. Local Database Support: if an upgrade fails, a downgrade is now performed if
178 +    possible and an exception raised.
179 +
180 + 19. MinimumVersionNo added to Local Database Support. Database will not open if
181 +    below this version no. and upgrade not possible.
182 +
183   IBX Change Log  version (2.3-4 Build 12041) Fri, 17 Apr 2020 14:00:32 +0100
184  
185   1.  TIBXDataSet and Generators: Generator Names that are not all upper case or

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines