com.ibm.jtopenlite.database
Interface DatabaseFetchAttributes
-
- All Known Implementing Classes:
- DatabaseRequestAttributes
public interface DatabaseFetchAttributes
-
-
Method Summary
Methods Modifier and Type Method and Description long
getBlockingFactor()
java.lang.String
getCursorName()
long
getFetchBufferSize()
int
getFetchScrollOption()
int
getFetchScrollOptionRelativeValue()
byte[]
getRLECompressedFunctionParameters()
int
getTranslateIndicator()
int
getVariableFieldCompression()
boolean
isBlockingFactorSet()
boolean
isCursorNameSet()
boolean
isFetchBufferSizeSet()
boolean
isFetchScrollOptionSet()
boolean
isRLECompressedFunctionParametersSet()
boolean
isTranslateIndicatorSet()
boolean
isVariableFieldCompressionSet()
void
setBlockingFactor(long value)
void
setCursorName(java.lang.String value)
void
setFetchBufferSize(long value)
void
setFetchScrollOption(int value, int relativeValue)
void
setRLECompressedFunctionParameters(byte[] value)
void
setTranslateIndicator(int value)
void
setVariableFieldCompression(int value)
-
-
-
Method Detail
-
getCursorName
java.lang.String getCursorName()
-
isCursorNameSet
boolean isCursorNameSet()
-
setCursorName
void setCursorName(java.lang.String value)
-
getBlockingFactor
long getBlockingFactor()
-
isBlockingFactorSet
boolean isBlockingFactorSet()
-
setBlockingFactor
void setBlockingFactor(long value)
-
getFetchScrollOption
int getFetchScrollOption()
-
isFetchScrollOptionSet
boolean isFetchScrollOptionSet()
-
setFetchScrollOption
void setFetchScrollOption(int value, int relativeValue)
-
getFetchScrollOptionRelativeValue
int getFetchScrollOptionRelativeValue()
-
getTranslateIndicator
int getTranslateIndicator()
-
isTranslateIndicatorSet
boolean isTranslateIndicatorSet()
-
setTranslateIndicator
void setTranslateIndicator(int value)
-
getRLECompressedFunctionParameters
byte[] getRLECompressedFunctionParameters()
-
isRLECompressedFunctionParametersSet
boolean isRLECompressedFunctionParametersSet()
-
setRLECompressedFunctionParameters
void setRLECompressedFunctionParameters(byte[] value)
-
getFetchBufferSize
long getFetchBufferSize()
-
isFetchBufferSizeSet
boolean isFetchBufferSizeSet()
-
setFetchBufferSize
void setFetchBufferSize(long value)
-
getVariableFieldCompression
int getVariableFieldCompression()
-
isVariableFieldCompressionSet
boolean isVariableFieldCompressionSet()
-
setVariableFieldCompression
void setVariableFieldCompression(int value)
-
-