Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example

...

Code Block
languagecpp
<Missing Example>IF NOT xpfTestAttrBN(user,'password') THEN -- unsafe, mistype in attribute name can not be found in compile time
	user.password := default_password;
END_IF;
-- it is preferable to code the checking like this:
IF NOT EXISTS(user.password) THEN
	user.password := default_password;
END_IF;

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "extension_schema" and parent = "5636522"

...