Annotation Type FetchSize
-
@Documented @Retention(RUNTIME) @Target({METHOD,TYPE}) public @interface FetchSize
Allows manual control over the fetch size.This is only really useful for methods that use cursors or
ResultSets to return multiple rows.When applied to an interface applies to all methods in the class unless also applied to a method.
- See Also:
Statement.setFetchSize(int), Fetch Size
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description intvalueSets the fetch size to be used.
-