ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The PersistedCalculatedItem property is used to:
  • Find out whether the value of a calculated item is stored in the data file. This item was defined in the data model editor or through programming.
  • Define whether the value of a calculated item is stored in the data file (when describing the item through programming).
Remark: The calculated items correspond to the "Expression" items in the data model editor.
Example
AFile is File Description
AnItem is Item Description
AnItem.Name = "CmdDate"
AnItem.CalculatedItemExpression = "'Written by ' + CURRENT_USER + ' on ' + SYSDATE"
AnItem.PersistedCalculatedItem = True
HDescribeItem(AFile, AnItem)
Syntax

Find out whether the value of a calculated item is stored in the data file Hide the details

<Result> = <Data file>.<Item>.PersistedCalculatedItem
<Result>: Boolean
  • True if the value of the calculated item is stored in the data file.
  • False if the value of the item is recalculated at each reading.
<Data file>: File name
Name of the data file used.
<Item>: Item name
Name of item used.
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPadIOS WidgetUser code (UMC)Ajax

Indicating whether the value of a calculated item must be stored in the data file Hide the details

<Item>.PersistedCalculatedItem = <Value>
<Item>: Item name
Name of the item used. This name was defined by the Item Description type.
<Value>: Boolean
  • True if the value of the calculated item must be stored in the data file.
  • False if the value of the item must be recalculated at each read operation.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help