SchemaAssociationOnDelete Property

The delete action to be performed.

Syntax

 odata.getSchemaAssociationOnDelete([callback])

Possible Values

  0 (daNone), 
  1 (daCascade), 
  2 (daSetNull), 
  3 (daSetDefault)

Default Value

0

Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for the getSchemaAssociationOnDelete([callback]) method is defined as:

function(err, data){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'data' is the value returned by the method.

The callback for the setSchemaAssociationOnDelete([callback]) method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

The delete action to be performed.

Possible values are:

0 (daNone) Only the specified entry instance within SchemaAssociationFromRoleEntity is deleted. This is the default value.
1 (daCascade) After the specified entry instance is deleted within SchemaAssociationFromRoleEntity, the action is applied to the entry instance within the SchemaAssociationToRoleEntity. For example, a single Customer is associated with multiple Orders. When a Customer is deleted, all Orders associated with the Customer will be deleted.
2 (daSetNull) All properties of related entities that are tied to properties of the source entity via a referential constraint and that do not participate in other referential constraints will be set to null. This value is only applicable to OData Version 4.
3 (daSetDefault) All properties of related entities that are tied to properties of the source entity via a referential constraint and that do not participate in other referential constraints will be set to their default value. This value is only applicable to OData Version 4.

The index parameter specifies the index of the item in the array. The size of the array is controlled by the SchemaAssociationCount property.

This property is read-only and not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Node.js Edition - Version 20.0 [Build 8307]