rbWiki > RAP > Fundamentals > Check for IsNull

Check for IsNull

TECH TIP: Checking for Null Data values

The DataPipeline.FieldObjects[] array property provides access to the TppField objects. TppField has an IsNull boolean property.

The notation is:

DataPipeline.FieldObjects['FieldName'].IsNull

Example:

if Customer.FieldObjects['Addr1'].IsNull then
  ShowMessage('field value is null');
Tags
none

Files (0)

 
You must login to post a comment.