Test268 Section 1

From MidrangeWiki
Revision as of 16:28, 29 November 2005 by Koldark (talk | contribs) (Use externally described database files in a program)
Jump to: navigation, search

<< Previous Section | Home | Next Section >>

Section 1 - Externally Described Files in Programs (14%)

Use printer files and "O" specs to define output in a program

Use database file I/O operations in a program

Grab one particular record in a file:

      chain (employee) empfile;

Write a record:

      write roperator;

Set the pointer to a spot in the file then read all records that match the key:

      setll (employee) emphist;
      reade (employee) emphist;
      
      dow not %eof();
        ::: Logic here :::
        reade (employee) emphist;
      enddo;

Update a record:

      update record;

Use display file I/O operations in a program

Write a display record:

      write footer;

EXFMT:

      exfmt screen1;

Read a display record:

      read screen;

Use externally described database files in a program

FFilename++IPEASF.....L.....A.Device+.Keywords+++++++++++++++++++++++++++++Comments++++++++++++
FDBAPAPB1  IF   E           K DISK                                                             
FDBAPAPD1  IF   E           K DISK

Use externally-described printer files in a program

Use externally-described display files in a program

Create DDS externally described files

Create SQL externally described files

Use EXTFILE. EXTMBR and OPEN/CLOSE file operations in a program

When using externally described files, rename fields

When using externally described files, show how to rename record formats in a program

Create Physical, Logical/View, Printer, and Display externally described files

Use a field reference file to create an externally described file