Example: lr_continue_on_error
In the following example, the Continue on Error runtime setting is enabled. If the script encounters an error while running the following segment, it continues executing the script.
lrd_stmt(Csr1, "select..."...);
lrd_exec(...);
//To instruct the test run component to continue on error for the entire script except for this segment, enclose the segment with lr_continue_on_error statements.
lr_continue_on_error (0);
lrd_stmt(Csr1, "select..."...);
lrd_exec(...);
lr_continue_on_error(1);