Function EN Version 1.90

@Dump

Debugging

Syntax

@Dump(VAR1);
@Dump(VAR1;OSPATH2);
@Dump(VAR1;OSPATH2;SIZE3);

Description

Outputs the contents of the variable VAR as a dump (memory dump) to a file in the Notes server data directory. The file name consists of the first 8 characters of the variable name + ".DMP". With OSPATH OSPATH2, to alternative name can be specified to alternative name for the file to be used and with FN SIZE3 a maximum length for the output can be specified (0 means no limit).

Example: @Dump(VAR1)

VAR1:="ABCDEFGHIJKL";
@Dump(VAR1);

creates file "VAR1.DMP" with length 12

Example: @Dump(VAR1;OSPATH2)

VAR1:="ABCDEFGHIJK";
OSPATH2:="VAR1.DMP";
@Dump(VAR1;OSPATH2);

creates file "VAR1.DMP" with length 12

Example: @Dump(VAR1;OSPATH2;SIZE3)

VAR1:="ABCDEFGHIJK";
OSPATH2:="VAR1.DMP";
SIZE3:=6;
@Dump(VAR1;OSPATH2;SIZE3);

creates file "VAR1.DMP" with length 6

Note : This text was machine-translated and may contain inaccuracies.