DEBUG REMOVE BREAK POINT

Removes a break point

Syntax

DEBUG REMOVE BREAK POINT <break_name>

 

break_name ::= identifier

Remark

The DEBUG REMOVE BREAK POINT statement removes a break point that was created by the DEBUG BREAK POINT statement. The break_name identifies the break point to remove and it must match the one specified by the DEBUG BREAK POINT statement.

Successful execution of this command removes a row from the ::DEBUG_BREAKS table.

Example

// Sets and removes a break point

DEBUG BREAK POINT 'CONN0001xxxx' STATEMENT 'STMT0001yyyy' AT 0 ID my_break;

DEBUG REMOVE BREAK POINT my_break;

See Also

DEBUG BEGIN

DEBUG CONNECTION

DEBUG BREAK POINT

DEBUG RUN

DEBUG WAIT

::DEBUG_CONNECTIONS

::DEBUG_STACK

::DEBUG_BREAKS

::DEBUG_VARIABLES

::DEBUG_SOURCES