Skip to main content

SqlComputed

Specifies whether that this is a computed property.

Usage

To specify that this property is computed, use the following syntax:

Property name As classname [ SqlComputeCode = sqlcomputecode, SqlComputed ];

Where sqlcomputecode is described in SqlComputeCode.

Otherwise, omit this keyword or place the word Not immediately before the keyword.

Details

If this keyword is true (and if the property also specifies SqlComputeCode), then this property is a computed property. For options and other details, see “Defining a Computed Property” in Using Caché Objects.

If a property has a value for the SqlComputed keyword, Caché uses that value to compute the property. Specifically, a new class method, <property>Compute, is generated from SqlComputeCode. This method is called from the property’s <property>Get method. If the property also has SqlComputeOnChange keyword specified, then the <property>Compute method is called at the specified times.

This functionality is implemented in the <property>Get and <property>Set methods. If you override either of those methods, then property computations do not work unless there are provisions in the overridden method implementations to trigger computations.

Default

If you omit this keyword, this property is not computed.

See Also

FeedbackOpens in a new tab