I. EQUEL/FORMS Examples : Extended Examples : Using the Putrow and Getrow Statements
 
Share this page                  
Using the Putrow and Getrow Statements
The following example shows activate sections using the putrow and getrow statements:
## activate menuitem "putcurrent"
## {
     /* put new information into the current row. */
##   putrow empform employee (age = 52, sal = vsal)
## }
## activate menuitem "getfirst"
## {
     /* get information from the first displayed row. */
##   getrow empform employee 1
          (vage = age, vsal = sal, state = _state)
## }