What are the functions performed by the user on the database table? - Progress

What are the functions performed by the user on the database table?



The database table used in Progress programming language can be used to perform the following functions:

- User can read the content of the database table and the record in which it is stored. The records are searched from the beginning to end.

- The default display is accessed by the fields that are present in the record and then the accessing becomes easier.

- It provides a good display that shows many records that can fit to the display that provide information of the users.

- It provides the features like pauses and waits for the signal of the users to display the information.

- The program for this is as follows:

FOR EACH User:
DISPLAY User.
END.
Post your comment