RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TriggerReadRow.IsNull Method (int)

Returns true if the value of a given column is null.

Pascal
function IsNull(columnName: string): bool;
function IsNull(ordinal: Integer): bool;
C++
bool IsNull(string columnName);
bool IsNull(int ordinal);

IsNull has several forms, depending on the input parameter:

  • Returns true if the value of a given column is null. The parameter columnName is the name of the column containing the wanted value.
  • Returns true if the value of a given column is NULL. The parameter ordinal is the ordinal of the column containing the wanted value.

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!