585 | MESSAGE | CONDITIONAL USE OF UNINITIALIZED VARIABLE '!' (585) |
W | CAUSE | The local variable mentioned in the message
may be uninitialized when used in this procedure or function. It
may be initialized in a THEN
clause and not the ELSE
clause. Or it may not appear in all statements of a CASE.
Or it may be in a FOR
or WHILE loop
that might never execute. |
| ACTION | Ensure that the variable is initialized
before use. |
589 | MESSAGE | CONDITIONAL USE OF UNINITIALIZED FIELD '!' of '!' (589) |
W | CAUSE | The field of the local variable mentioned
in the message may be uninitialized when used in this procedure
or function. It may be initialized in a THEN
clause and not the ELSE
clause. Or it may not appear in all statements of a CASE.
Or it may be in a FOR
or WHILE loop
that might never execute. |
| ACTION | Ensure that the field is initialized
before use. |