DTRHELP.HLB  —  Commands Statements Clauses, COMMIT Statement, Examples
       The following Oracle CODASYL DBMS example connects an employee
       named Hill to a part LA36 in the RESPONSIBLE_FOR set. The COMMIT
       statement makes this change permanent.

       DTR> FIND E IN EMPLOYEES WITH EMP_LAST_NAME = "HILL"
       DTR> SELECT 1
       DTR> FOR P IN PART WITH PART_DESC = "LA36"
       CON>   CONNECT P TO E.RESPONSIBLE_FOR
       DTR> COMMIT

       DTR>

       The following relational database example stores a record in
       the relation DEPARTMENTS. The COMMIT statement makes this change
       permanent:

       DTR> READY DATABASE PERSONNEL USING DEPARTMENTS WRITE
       DTR> STORE DEPARTMENTS
       Enter DEPARTMENT_CODE: SENG
       Enter DEPARTMENT_NAME: SOFTWARE ENGINEERING
       Enter MANAGER_ID: 87215
       DTR> COMMIT

       DTR>
Close Help