Example: lrd_option

In the following example, lrd_option instructs VuGen not to display (print) the results during replay.

lrd_stmt(Csr1, "select ename from employee where (sal>=1000)\n", -1, 1, 1, 0);
lrd_bind_col(Csr1, 1, &D21_ENAME, 0);
lrd_exec(Csr1, 0, 0, 0, 0);
lrd_option(LRD_OPTION_PRINT_RESULT_DATA, N);
lrd_fetch(Csr1, -3, 1, 0, PrintRow24, 0);