![]() |
![]() |
ALLBASE/SQL COBOL Application Programming Guide: HP 9000 Computer Systems > Chapter 6 Overview Of Data Manipulation![]() Introducing The Cursor |
|
You use a cursor to manage a query result that may contain more than one row when you want to make all the qualifying rows available to the program user. Cursors are used in sequential table processing and BULK table processing, as shown later in this chapter. Like the cursor on a terminal screen, an ALLBASE/SQL cursor is a position indicator. It does not, however, point to a column. Rather, it points to one row in an active set. An active set is a query result obtained when a SELECT command associated with a cursor (defined in a DECLARE CURSOR command) is executed (using the OPEN CURSOR command). Each cursor used in a program must be declared before it is used. You use the DECLARE CURSOR command to declare a cursor. The DECLARE CURSOR command names the cursor and associates it with a particular SELECT command:
All cursor names within one program must be unique. You use a cursor name when you perform data manipulation operations using the cursor. The SELECT command in the cursor declaration does not specify any output host variables. The SELECT command can, however, contain input host variables, as in the WHERE clause of the cursor declaration above. Rows in the active set are returned to output host variables when the FETCH command is executed:
If a serial scan will be used to retrieve the active set, ALLBASE/SQL locks the table(s) when the OPEN command is executed. If an index scan will be used, locks are placed when rows are fetched. Both the OPEN and the FETCH commands position the cursor:
The row at which the cursor points at any one time is called the current row. When a row is a current row, you can delete it as follows:
When you delete the current row, the cursor remains between the row deleted and the next row in the active set until you execute the FETCH command again:
When a row is a current row you can update it if the cursor declaration contains a FOR UPDATE OF clause naming the column(s) you want to change. The following cursor, for example, can be used to update the SALESPRICE column of the current row by using the WHERE CURRENT OF option in the UPDATE command:
The restrictions that govern deletions and updates using a view also govern deletions and updates using a cursor. You cannot delete or update a row using a cursor if the cursor declaration contains any of the following:
After the last row in the active set has been fetched, the cursor is positioned after the last row fetched and the value in SQLCODE is equal to 100. Therefore to retrieve all rows in the active set, you execute the FETCH command until SQLCODE = 100. In the following example, a flag named DONE-FETCH is set to X after the last row in the active set has been fetched, and fetching stops:
When you are finished operating on an active set, you use the CLOSE command:
When you close a cursor, the active set becomes undefined and you cannot use the cursor again unless you issue an OPEN command to reopen it. The COMMIT WORK and ROLLBACK WORK commands also close any open cursors, automatically. Figure 6-2 summarizes the effect of the cursor related commands on the position of the cursor and on the active set. All the commands shown, plus the DECLARE CURSOR command, must be included within one preprocessed unit (main program or subprogram). The chapter, "Processing with Cursors," contains more detailed information about using cursors including examples of using the KEEP CURSOR option of the OPEN command. |