Halt Statement

Terminates the simulation of the current user.

Syntax

Stat = "halt".

Example

dcltrans
  transaction TMain
  begin
    gHdbc1 := DB_Connect(CONNECT_STRING);
    if gHdbc1 = 0 then
      halt;
    end;
  end TMain;