2.0
3.0
>
lang
>
isnull
Previous Next
Edit
Rename
Undo
Search
Administration
Documentation
Warning! This page is not translated.
See english version
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