IsValueNull (ODBCResultSet - LotusScript)

Indicates whether a column value is a null data value.

Defined in

ODBCResultSet

Syntax

flag% = odbcResultSet . IsValueNull( column_id% )

or

flag% = odbcResultSet . IsValueNull( column_Name$ )

Parameters

column_id%

Integer. The ID of a column. Use any numeric data type, except Currency.

column_Name$

String. The name of a column.

Return value

  • True indicates that the value of this cell in the current row is null.
  • False indicates that the value is not null.

Errors

Field ID is out of range (DBstsINVC)

Example