Constants are logical, numeric, and string values.
ok
if it was done correctlynok
if not done correctlynull
if no results returneddata
if logical, numeric or string data returnedLogical constants are used to represent falsity and truth:
false
true
Number 0 (zero) or void string '' are false.
Integer constants are: ..., -2, -1, 0, +1, +2,... (+ can be omitted).
Floating point constants are, for example: -3.84, 3.14, +12.5 (2-digit approximation).
String constants are sequences of characters delimited by:
'
(single quote)"
(double quote)or terminated by:
,
(Command Separator)]
(compound end command).