Contents Index Cursor sensitivity example: a deleted row Insensitive cursors

ASA Programming Guide
  Using SQL in Applications
    Adaptive Server Anywhere cursors

Cursor sensitivity example: an updated row


This example uses a simple query to illustrate how different cursor types respond to a row in the result set being updated in such a way as to change the order of the result set.

Consider the following sequence of events:

  1. An application opens a cursor on the following query against the sample database.

    SELECT emp_id, emp_lname
    FROM employee
    emp_id emp_lname
    102 Whitney
    105 Cobb
    160 Breault
    ... ...
  2. The application fetches the first row through the cursor (102).

  3. The application fetches the next row through the cursor (105).

  4. A separate transaction updates the employee ID of employee 102 (Whitney) to 165 and commits the change.

The results of the cursor actions in this situation depend on the cursor sensitivity:

No warnings or errors in bulk operations mode 
Update warning and error conditions do not occur in bulk operations mode (-b database server option).

Contents Index Cursor sensitivity example: a deleted row Insensitive cursors