Interface: FetchByOffsetCapability

Oracle® JavaScript Extension Toolkit (JET)
15.1.0

F83698-01

Since:
  • 4.2.0
Module:
  • ojdataprovider

QuickNav

Fields

Description

Defines the result to the DataProvider method DataProvider#getCapability for capability "fetchByOffset"


Usage

Signature:

interface FetchByOffsetCapability

Typescript Import Format
//To use this interface, import as below.
import {FetchByOffsetCapability} from "ojs/ojdataprovider";

For additional information visit:


Fields

(nullable) attributeFilter :AttributeFilterCapability

Optional detailed attribute filter capability information
Since:
  • 10.0.0

(nullable) caching :('all'|'none'|'visitedByCurrentIterator')

Optional detailed caching capability information
Since:
  • 10.0.0

implementation :"iteration"|"randomAccess"

The type of implementation for fetchByOffset method. Possible values are:
  • "iteration": the implementation uses fetchFirst iteratively to find the result
  • "randomAccess": the implementation uses random access to find the result
Since:
  • 4.2.0

(nullable) totalFilteredRowCount :('exact'|'none')

Indicates whether total filtered row count can be returned. The total filtered row count is a count of all the rows that can be iterated after applying any filterCriterion. Possible values are:
  • "exact": The exact total filtered row count can be returned through the iterator results.
  • "none": Total filtered row count cannot be returned.
Since:
  • 14.0.0