Enfin et avec un peu de retard, nous concluons cette série d'articles sur notre moteur de Workflow en montrant un exemple de connexion que nous pourrions établir à partir d'une application mobile.
FIXED: Notepad content was multiplied after close and reopen the notepad tab
ENH : DuckDB driver upgraded to 0.10.3
FIXED: SQL History : Threading issue fixed
3.16 released on 2023-10-08
ENH : TableViewer : “open in new tab” improved
ENH : Cached Queries : Delete selected cached query and delete all cached queries for selected tabel is now working for IRIS
ENH : SQL Editor : Copy table on server side works now for IRIS and use the CREATE TABLE
<
table> AS SELECT… syntax * ENH : SQL Editor : IRIS improvment: Within SQL Editor the plain execution plan can be shown * ENH : SQL Editor : New connect button on toolbar to switch fast to another server \ database * * ENH : Management\Databases : More details for IRIS and Caché are now displayed for database files * * ENH : Management\Log files : Log File viewer now with mono font * * ENH : Management\Log files : journal.log entries are now displayed for IRIS * ENH : Management\SQL Gateway : SQL Gateway entries can now be deleted * * ENH : Management\SQL Gateway : Create a server-side IRIS SQL Gateway connection based on local connections configured in SQL DATA LENS * ENH : Removed Caché database drivers older than 2018.1. This is now the only database driver for Caché that is included. * ENH : Removed IRIS database drivers for IRIS 2019.1, IRIS 2020.1, 2021.1, 2022.1 * The new default driver for InterSystems is IRIS 2023.1 * ENH : Support and Driver for DuckDB added * FIXED: Cached Queries node shows the correct item count * FIXED: Globals node shows the correct item count * FIXED: SQL Editor : better query plan support for IRIS * FIXED: Profiling : added PStats support for IRIS
v3.18.0
ENH : SQL Editor : More keywords for Intersystems IRIS integrated
ENH : TableViewer : Show storage details for IRIS, like table (global) sizes
ENH : The licensing system has been updated to fix issues with error code 28 based on a disabled network adapter. The activation process needs to read all of a computer’s components to get an accurate “fingerprint” of the computer, and this includes all real (aka non-virtualised) network adapters attached to the computer.
ENH : ServerNavigator : Database metadata viewer improved with more detail and better sorting
ENH : DuckDB (driver) upgraded to 1.0
ENH : New shortcut to create a in memory DuckDB connection
ENH : Simply drag and drop the csv\parquet\json file onto the DuckDB connection and the necessary SQL statements will be generated to read the file with ease.
FIXED: Connection dialogue box is now centred on the main frame
FIXED: DuckDB connections are created with the right duckDB icon. You need to recreate the entries to fix this problem for existing connections.
: We highly recommend clients do not update directly to production environments without first testing in a demo environment.
What's New?
Major development on core engine components that improve VDM's overall performance, scalability, stability and usability. (Task 1596) Replaced the Real data type for MDS / Datawarehouse with Dec (18,4). (Task 1578)
Bug Fixes
(Bug 1622) - VDM: Scheduler - Can't Access Execution (Bug 1617) - VDM: Scheduler - Calendar File Reading (Bug 1620) - VDM: Unable to Modify View Order in Job (Bug 1607) - VDM: Insights - Visualize Not Working (Bug 1609) - VDM: My SQL Errors reflect Katabat (Bug 1610) - VDM: MDS - Separate Session / MDS with Service (Bug 1600) - VDM: Tables and Fields - WebReports Form Cut Off (Bug 1601) - VDM: InterProse Connections - NBSP Special Character (Bug 1600) - VDM: Data Warehouse - Combo Box Duplicates Connection Profiles (Bug 1581) - VDM: Parameters - Number of Parameter Pages
v2024.6.18
What's New?
Major development on core engine components (23.2.6) that improve VDM's overall performance, scalability, stability and usability. (Task 1615)
VDM's Datawarehouse feature now stores Grid Level expressions for both the Detail and Summary Grids. (Feature 1627)
Bug Fixes
(Bug 1621) - VDM: Scheduler Appointment Options Differ Using Database vs Calendar File
When the Calendar file is used, we don't have all the options available. (Minutely / Hourly / Time Zone, etc.)
Replaced the Real data type for MDS / Datawarehouse with Dec(18,4). (Task 1579)
We have updated the Default Connection String in the appsettings.json for WebReports. This will address the Breaking Change in this build for any new users of WebReports (any users with existing appsettings file will have to update it manually.) (Task 1594)
Major development on core engine components that improve VDM's overall performance, scalability, stability and usability. (Task 1596)
Bug Fixes
(Bug 1580) - WebReports: Parameters - Visualize Parameters Not Being Passed
Class Foo.Bar
{
ClassMethod Helper()
{
// do something
}
ClassMethod Generated() [ CodeMode = objectgenerator ]
{
do ..Helper()
// do something else
}
}
Since the method Generated is run before the class is compiled, the call to do ..Helper() fails. Is there a way around this other than manual inlining?