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 349 by tony, Mon Oct 18 08:39:40 2021 UTC vs.
Revision 427 by tony, Tue Nov 28 17:00:03 2023 UTC

# Line 1 | Line 1
1 < IBX Change Log  version (2.4-3 Build 12829) Sun, 17 Oct 2021 23:58:19 +0100
1 > IBX Change Log  version (2.6-4 Build 14100) Mon, 27 Nov 2023 14:26:34 +0000
2 >
3 > 1. TIBCustomDataSet.ApplyUpdates: ensure controls are not permanently disabled
4 >   if ApplyUpdates called before a cursor exists.
5 >
6 > 2. TIBCustomDataSet.CreateBlobStream: add check for empty dataset before
7 >   creating the blob.
8 >
9 > 3. TIBCustomDataset.Requery: The display buffer pool is now also reset avoiding
10 >   issues with left over pointers to invalid internal buffers.
11 >
12 > IBX Change Log  version (2.6-3 Build 14080) Sat, 21 Oct 2023 14:14:22 +0100
13 >
14 > 1. Update to calls to EInterbaseError to add default code page. Consequential
15 >   on change to fbintf.
16 >
17 > 2. Update some examples to replace test for null date with the NullDate constant
18 >   instead of zero. This is because Laz 3.0 changes the value of NullDate.
19 >
20 > IBX Change Log  version (2.6-2 Build 14016) Sat, 05 Aug 2023 11:54:55 +0100
21 >
22 > 1. Fixed repeated "type" keyword in IBBufferCursors. This may cause a compile error
23 >   with later versions of fpc - later than 3.2.2.
24 >
25 > 2. IBUpdateSQL. update internal queries if parent dataset database changed.
26 >
27 > 3. IBUpdateSQL: Do not prepare an empty internal query.
28 >
29 > 4. IBBufferedCursors: avoid range error when max field no. is > fields.count
30 >
31 > 5. IBBufferedCursors: avoid End of File error if refresh query returns and empty row count
32 >
33 > IBX Change Log  version (2.6-1 Build 13985) Mon, 17 Jul 2023 14:16:41 +0100
34 >
35 > 1. Maintenance update of 2.6.0. This version is still at beta.
36 >
37 > 2. Reverse out changes to DrawCellText signature in IBArrayGrid and IBDynamic Grid.
38 >   See https://gitlab.com/freepascal.org/lazarus/lazarus/-/commit/53aaae9c5e2a5edac5b1d2f70739a8ef7b0a9623
39 >
40 > 3. ibxscript: When parsing a store procedure or function with a variable name
41 >   enclosed in doublequotes, the double quotes are no longer removed.
42 >
43 > IBX Change Log  version (2.6-0 Build 13976) Thu, 22 Jun 2023 13:49:22 +0100
44 >
45 > NOTE: THIS VERSION RE-WRITES THE INTERNAL BUFFER MANAGER AND SHOULD BE CONSIDERED
46 >      AS BETA SOFTWARE. EVEN THOUGH IT HAS PASSED ALL REGRESSION TESTS, IT CANNOT
47 >      BE ASSUMED TO BE PRODUCTION READY UNTIL WIDER USE. PLEASE REPORT ANY
48 >      ISSUES TO support@mwasoftware.co.uk
49 >
50 > 1. Complete rewrite of internal buffer management in order to improve performance
51 >   and maintainability. Highlights:
52 >
53 >   * Extending the size of the buffer pool no longer has to copy the entire record
54 >     cache. Instead, a new extent is simply added to the buffer pool.
55 >   * A memory to memory copy of each display buffer now is avoided when scolling the
56 >     dataset.
57 >   * A separate set of buffers is now used for calculated fields. This avoids
58 >     having to keep copies of calculated field values in the buffer cache.
59 >   * Compact bitmaps are used to record null status and need to refresh in each
60 >     buffer.
61 >   * Display buffer type changed from PChar to TRecordBuffer in line with change of
62 >     buffer type in FCL-DB.
63 >
64 > 2. TIBUpdateSQL: changes to SQL text will close linked dataset if open. This is
65 >   to ensure same behaviour as TIBDataset, TIBTable and TIBStoredProcedure.
66 >
67 > 3. TField Provider Flags: pfRefreshOnInsert and pfRefreshOnUpdate are now supported.
68 >   If either or both of these flags are set at design time (using the fields editor)
69 >   then this forces a row refresh on respectively insert or update, or both, when the
70 >   corresponding field is not present in an SQL RETURNING clause.
71 >
72 > 4. TIBCustomDataset.FieldDefsFromQuery moved to a helper class (TFieldDefsMaker) in order to improve
73 >   maintainability and readability and to add identification of primary key fields.
74 >
75 > 5. TIBQuery, TIBDataset and TIBTable. Traditionally, IBX has implemented the Refresh method
76 >   as a refresh of the current row. However, this is different behaviour to that described
77 >   in the FPC documentation for TDataset.Refresh which is described as "refetches the data in
78 >   the dataset from the underlying database, and attempts to reposition the cursor on
79 >   the same record as it was". IBX now complies with the FPC definition of Refresh.
80 >
81 > 6. A progammatic Row Refresh should no longer be required.
82 >   Use Insert/Update... returning to refresh any fields that may change following an
83 >   insert or update i.e. Identify fields on Insert only, Computed By, Blob and array fields
84 >   on both. If there are any other fields (e.g. updated by triggers) set the appropriate ProviderFlag
85 >   for the field at Design Time to force a row refresh if not in the returning clause.
86 >
87 > 7. It should now be possible to insert a row into an empty unidirectional dataset.
88 >
89 > 8. New TIBQuery, TIBDataSet and TIBTable property: BufferChunksInFirstBlock (default 50).
90 >   This gives the number of buffers in the initial block for the buffer pool in
91 >   bi-directional datasets. BufferChunks (default 1000) gives the number of buffers
92 >   in subsequent buffer pool blocks. This avoids large and mostly unused memory allocations
93 >   for small datasets.
94 >
95 > IBX Change Log  version (2.5-1 Build 13927) Tue, 6 Dec 2022 23:13:00 +0000
96 >
97 > 1. IBCustomDataset: avoid problem with additions to TFieldType by using a subset instead.
98 >
99 > 2. TIBDynamicGrid: change DrawCellText declaration to comply with laz 2.3.0
100 >
101 > 3. TIBArrayGrid: change DrawCellText declaration to comply with laz 2.3.0
102 >
103 > IBX Change Log  version (2.5-0 Build 13868) Fri, 29 Jul 2022 09:52:01 +0100
104 >
105 > 1. TIBTransaction: new properties
106 >    property TransactionID: integer read GetTransactionID;
107 >    property IsReadOnly: boolean read GetIsReadOnly;
108 >    {published}
109 >    property TransactionName: string read FTransactionName write SetTransactionName;
110 >
111 > 2. IBCustomDataset: per row blob and array buffer cached clear before processing
112 >   Insert or Update...Returning. This allows blobs and arrays to be returned
113 >   by the statement.
114 >
115 > 3. TSQLXMLReader moved from IBXScript to package fbintf unit IBUtils.
116 >
117 > 4. TransactionName initialised to a newly generated GUID if empty.
118 >
119 > 5. New unit: IBJournal. This provides the TIBJournal component which is a wrapper
120 >   for the fbintf package's journaling capability. TIBJournal is used to set the
121 >   file path and filename for the journal file and to Enabled (start journaling) and
122 >   disable (stop journaling). See fbintf/doc/README.ClientSideJournaling.pdf for
123 >   more information, and comments in IBJournal.pas.
124 >
125 > 6. TIBDatabase.InternalTransaction is now a read only transaction.
126 >
127 > 7. Bug fix: blob id no longer set to null on update when blob has not been
128 >   retrieved.
129 >
130 > 8. Row auto refreshed on update/insert if blob or array field updated and field
131 >   not in a returning clause.
132 >
133 > 9. ColumnCount moved from record buffer header to a single per dataset count. Reduces
134 >   buffer overhead and avoids problem when refresh query has a different column
135 >   count to select query i.e. incorrectly changing number of columns.
136 >
137 > 10. IBExtract: support added for UDR Functions, Procedure and Trigger declarations.
138 >
139 > 11. TIBDatabaseInfo. New property FirebirdVersion. This returns the current Firebird version
140 >    string. Note that the Version property returns an InterBase compatible version string.
141 >
142 > 12. IBExtract: ensure sql identifiers returned as a LIST are always quoted.
143 >
144 > IBX Change Log  version (2.5-0 Build 12933) Mon, 29 Nov 2021 14:59:54 +0000
145 >
146 > 1. IBCustomDataset: Modify TISQL component now defaults to GoToFirstRecordOnExecute := true.
147 >   This is for compatibility with Firebird 5 where Update...Returning can return
148 >   a cursor.
149 >
150 > IBX Change Log  version (2.4-3 Build 12886) Sat, 23 Oct 2021 14:58:30 +0100
151  
152   1. Add try-..except check when initially loading library in IDE. This should
153   ensure that IDE continues to load even when a failure occurs in IBX load
# Line 19 | Line 168 | library.
168  
169   7. IBExtract: for ODS >=13, increment generator value by one for ALTER SEQUENCE statement.
170  
171 + 8. IBSQL: Support for scrollable cursors added (note: local databases only)
172 +
173   IBX Change Log  version (2.4-2 Build 12773) Mon, 23 Aug 2021 11:59:42 +0100
174  
175   1. TIBDatabaseInfo: review and tidy-up of property types. Most widen to int64 with the

Comparing ibx/trunk/changelog (property svn:eol-style):
Revision 349 by tony, Mon Oct 18 08:39:40 2021 UTC vs.
Revision 427 by tony, Tue Nov 28 17:00:03 2023 UTC

# Line 0 | Line 1
1 + native

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines