Tom @ Proco, Inc
800-867-7626 x4
t...@proman.com
Hi all,
I was using isnull in Universe for checking null characters. What is its usage in Jbasic.
I used to use IF ISNULL(v.var) THEN. How to use the same in Jbasic.
On Jun 27, 6:05 pm, "Mark Hogden" <m...@proman.com> wrote: > ISNULL function > Syntax > ISNULL (variable) > Description > Use the ISNULL function to test whether a variable is the null value. If > variable is the null value, 1 (true) is returned, otherwise 0 (false) is > returned. This is the only way to test for the null value since the null > value is not equal to any value, including itself. > Example > X = @NULL > Y = @NULL.STR > PRINT ISNULL(X), ISNULL(Y) > This is the program output: > 1 0 > Are these @NULL and @NULL.STR system constants peculiar to a particular emulation or something? They cause compilation errors on my jBASE 5.0.3 system with Pr1me emulation.