Chapter 14. readSkip attribute

This is attribute of <table_name>Query.java class. It is used in execution of select statements. It defines how many first results will be skipped (will not be returned as query results) when query is executed.

For example, if query should return only unique results, readSkip is the number of first unique query results that will be skipped, and not returned as query result.

For example, if security is used in queries, readSkip is the number of first query results (for which the user has access) that will be skipped and not returned as query result.

If query should return unique results and security is used, readSkip is the number of first unique query results, for which the user has access, that will be skipped, and not returned as query result.

This attribute is private. The public methods that work with this attribute are also in the <table_name>Query.java class and they are:

Sets the attribute readSkip to value newReadSkip.

Returns the current value of readSkip attribute.

The default value of this attribute is 0.