Tutorial Chapter 11: Master/Detail / The Orders Program orders.4gl |
This function closes the cursor used to select orders from the database.
01 FUNCTION close_order() 02 WHENEVER ERROR CONTINUE 03 CLOSE order_curs 04 WHENEVER ERROR STOP 05 END FUNCTION