Additional Reading
Sensitivity To Changes In Underlying Database
It is extremely important to application developers and end-users alike to understand the degree to which the Sensitive to changes in underlying database takes many forms, this includes: Static,
Static
Same as basic JDBC, records scrolling occurs over a database snapshot and is insensitive to underlying change by other users
JDBC resultset records scroll over a set of record identifiers uniquely identifying records in the underlying database, this type of scrolling is sensitive to changes is those records with identifiers at the time of query execution.
This form of scrolling is insensitive to record record additions or deletions.
Dynamic
JDBC resultset records scroll over a set of record identifiers uniquely identifying records in the underlying database, these unique identifiers are recreated before each
Mixed
JDBC resultset records scroll over a set of record identifiers uniquely identifying records in the underlying database, these unique identifiers are created to a limited size (known as the
Referenced by...