EDMsdk.2.201.46 Release Notes ----------------------------- Date/sign: 2020.03.13 AET * This release includes the cpp10 c++ interface, refer to web documentation * Corrections and updates in several components EDMsdk.2.138.45 Release Notes ----------------------------- Date/sign: 2020.03.06 AET This EDMsix release use crypted communication for all communication between Client and Server, and can therefore not communicate with older versions of EDM, i.e. all updates of EDMsix.1.100. When creating new databases, Password must be minimum 7 characters and maximum 24 characters and consist of at least one lowercase and one uppercase letters, one digit and one non 1alphanumeric character. If simplified passwords is wanted, without any requirements of length and content (minimum 1 character!), the environment variable EDM_RELAXED_PASSWORD must be set in the environment. The license can be updated with the program InstallLicenseKey.exe. You do not have to update Your license if you already have installed a license for an older release of EDMsix.2.100. IMPORTANT: The EDM cache size EDM_MEMORY_BLOCKS should be tuned to achieve optimal performance. A higher value will increase performance, but also increase memory consumption. A starting point could be 75000 blocks. To check the default setting open an EDM supervisor and use command System Adm>List>Config variables To set the cache size use EDMI function edmiSetInternalDataBN(): SdaiErrorCode SetEDMCacheSize(void) { EdmiError rstat; tSdaiSelect mySelect; mySelect.value.intVal = 75000; mySelect.type = sdaiINTEGER; mySelect.nTypes = 0; rstat = edmiSetInternalDataBN("EDM_MEMORY_BLOCKS", "", "", 0, &mySelect); return(rstat); } =========================================================================================================