2.0
3.0
>
lang
>
isnull
Previous
Next
Edit
Rename
Undo
Refresh
Search
Administration
Documentation
History
IsNull
Result
= IsNull (
Expression
)
AS Boolean
Returns
TRUE
if
Expression
is
NULL
, i.e. if it is:
The
NULL
constant.
A null
object
reference.
A zero length string.
A null date.
An uninitialized variant.
Example
PRINT IsNull(NULL)
True
PRINT IsNull("Gambas")
False
PRINT IsNull("")
True
See also
Datatype Functions