IBM DB2 Information Integrator
Java API Reference
for Developing Wrappers
A B C D E F G I L M N O P Q R S T U V W

A

ADD - Static variable in class com.ibm.db2.wrapper.CatalogOption
Action constant; indicates that the option is added to the catalog.
ASC - Static variable in class com.ibm.db2.wrapper.Reply
Constant that indicates the ascending ordering for an order entry.
addHeadExp(RequestExp) - Method in class com.ibm.db2.wrapper.Reply
Add a head expression in the SELECT clause of the query.
addOption(String, String, int, String, String) - Method in class com.ibm.db2.wrapper.CatalogInfo
Add an option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.ColumnInfo
Add an option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.NicknameInfo
Add an option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Add an option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.ServerInfo
Add a single-value option to the options chain.
addOption(String, String, Timestamp, String, int) - Method in class com.ibm.db2.wrapper.ServerInfo
Add a multi-value option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.UserInfo
Add an option to the options chain.
addOption(String, String, int) - Method in class com.ibm.db2.wrapper.WrapperInfo
Add an option to the options chain.
addOrderEntry(int, int) - Method in class com.ibm.db2.wrapper.Reply
Add an order entry in the ORDER BY clause of the query.
addPredicate(RequestExp) - Method in class com.ibm.db2.wrapper.Reply
Add a predicate in the WHERE clause of the query.
addQuantifier(Quantifier) - Method in class com.ibm.db2.wrapper.Reply
Add a quantifier in the FROM clause of the query.

B

BADKIND - Static variable in class com.ibm.db2.wrapper.RequestExp
Constant to indicate that the expression is unknown.
BLOB - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a BLOB data type.

C

CHAR - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a CHAR data type.
CLOB - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a CLOB data type.
CLOSE_EOA - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant used in close method to indicate that the wrapper is to finish necessary cleanup and that the RemoteQuery object is destroyed after the close method returns.
CLOSE_EOS - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant used in close method to indicate that the wrapper must leave the RemoteQuery in a state so that the reopen or reopenInputLob methods can be invoked.
COLUMN - Static variable in class com.ibm.db2.wrapper.RequestExp
Constant to indicate that the expression is a column.
CONSTANT - Static variable in class com.ibm.db2.wrapper.RequestExp
Constant to indicate that the expression is a constant.
CatalogInfo - class com.ibm.db2.wrapper.CatalogInfo.
CatalogInfo represents the base class for all the catalog classes and provides the infrastructure to manage a list of options.
CatalogOption - class com.ibm.db2.wrapper.CatalogOption.
The CatalogOption class represents the base class for options of the catalog objects.
ColumnInfo - class com.ibm.db2.wrapper.ColumnInfo.
The ColumnInfo class encapsulates catalog information for a column of a nickname.
ColumnInfo() - Constructor for class com.ibm.db2.wrapper.ColumnInfo
Construct a default (empty) column information object.
cardinality() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the cardinality of the result when running the query fragment that is represented by the reply.
checkFriendlyDivBy0() - Method in class com.ibm.db2.wrapper.RuntimeData
Determine if the reason for a null indication is a divide by zero error.
checkFriendlyException() - Method in class com.ibm.db2.wrapper.RuntimeData
Determine if the reason for a null indication is a numeric exception.
clearNullIndicator() - Method in class com.ibm.db2.wrapper.RuntimeData
Clear the null indicator for the data value.
close() - Method in class com.ibm.db2.wrapper.RemotePassthru
Close a pass-through cursor and allows the data source to clean up after pass-through statement processing.
close(short) - Method in class com.ibm.db2.wrapper.RemoteQuery
Allow the wrapper and the data source to clean up after query statement processing.
com.ibm.db2.wrapper - package com.ibm.db2.wrapper
Provides classes that you can use when you develop a wrapper for a data source and, after, you can use the data source in a federated database system.
commit() - Method in class com.ibm.db2.wrapper.RemoteConnection
Indicate the successful completion of a transaction and that the remote data source then commits the transaction.
connect() - Method in class com.ibm.db2.wrapper.RemoteConnection
Invoke the code to connect to the data source server.
createNickname(String, String) - Method in class com.ibm.db2.wrapper.Server
Instantiate an appropriate Nickname subclass for this data source server.
createRemoteConnection(FencedRemoteUser, int, long) - Method in class com.ibm.db2.wrapper.FencedServer
Create a new connection for the specified user mapping and of the specified kind.
createRemotePassthru(long) - Method in class com.ibm.db2.wrapper.RemoteConnection
Create a RemotePassthru object to run pass-through statements.
createRemoteQuery(long) - Method in class com.ibm.db2.wrapper.RemoteConnection
Create a RemoteQuery object to run SQL statements.
createRemoteUser(String) - Method in class com.ibm.db2.wrapper.FencedGenericServer
Instantiate an appropriate RemoteUser subclass for this data source server.
createRemoteUser(String) - Method in class com.ibm.db2.wrapper.Server
Instantiate an appropriate RemoteUser subclass for this data source server.
createRemoteUser(String) - Method in class com.ibm.db2.wrapper.UnfencedGenericServer
Instantiate an appropriate RemoteUser subclass for this data source server.
createReply(Request) - Method in class com.ibm.db2.wrapper.UnfencedGenericServer
Create a new empty Reply object for the given Request.
createServer(String) - Method in class com.ibm.db2.wrapper.Wrapper
Instantiate the appropriate subclass of Server for the wrapper.

D

DATE - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a DATE data type.
DECIMAL - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a DECIMAL or NUMERIC data type.
DESC - Static variable in class com.ibm.db2.wrapper.Reply
Constant that indicates the descending ordering for an order entry.
DOUBLE - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a DOUBLE data type.
DROP - Static variable in class com.ibm.db2.wrapper.CatalogOption
Action constant; indicates that the option is dropped from the catalog.
Data - class com.ibm.db2.wrapper.Data.
The Data class is the base class that manages cell values, constants, and parameter values.
DefaultRemoteFunction - class com.ibm.db2.wrapper.DefaultRemoteFunction.
The DefaultRemoteFunction class represents a simple remote function mapping.
DefaultRemoteFunction() - Constructor for class com.ibm.db2.wrapper.DefaultRemoteFunction
Class constructor
DefaultRemoteFunction(String, String, short, double, double, double, double, short, double, double) - Constructor for class com.ibm.db2.wrapper.DefaultRemoteFunction
Construct an instance with the specified values.
describe(RuntimeDataDescList) - Method in class com.ibm.db2.wrapper.RemotePassthru
Describe the result set of a statement that is processed by a pass-through operation.
destroy() - Method in class com.ibm.db2.wrapper.Nickname
Destroys this nickname object and frees any resources associated with it.
destroy() - Method in class com.ibm.db2.wrapper.RemoteUser
Destroys this user mapping object and frees any resources associated with it.
destroy() - Method in class com.ibm.db2.wrapper.Server
Destroys this server object and frees any resources associated with it.
destroy() - Method in class com.ibm.db2.wrapper.Wrapper
Destroys this wrapper object and frees any resources associated with it.
disconnect() - Method in class com.ibm.db2.wrapper.RemoteConnection
Invoke the code to disconnect from the data source server.
dropOption(CatalogOption) - Method in class com.ibm.db2.wrapper.CatalogInfo
Delete an option from the options chain.
dropOption(CatalogOption) - Method in class com.ibm.db2.wrapper.ServerInfo
Delete an option from the options chain.
dropOption(CatalogOption, String) - Method in class com.ibm.db2.wrapper.ServerInfo
Delete a value from a multi-value option and delete the option if no values remain.
dropRemoteFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.ServerInfo
Drop a remote function mapping object from the chain.

E

EOF - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant to be used with getStatus and setStatus methods to indicate that the RemoteQuery object finished fetching all the rows of the result set.
EXT_WRAPPERS_TRACE_COMPONENT - Static variable in class com.ibm.db2.wrapper.WrapperUtilities
Trace component ID for wrappers not provided by IBM.
execute() - Method in class com.ibm.db2.wrapper.RemotePassthru
Execute a statement that returns a code and does not return a result set by a pass-through operation.

F

FETCH_LOB_LAST - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB fetching status constant: indicate that the last buffer of data for the current LOB column has been fetched.
FETCH_LOB_MORE - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB fetching status constant: indicate that more data is available for the current LOB column.
FETCH_LOB_NEXT - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB fetching status constant: indicate that another LOB column is to be fetched next.
FETCH_NON_LOB_NEXT - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB fetching status constant: indicate that a non-LOB column is to be fetched next.
FETCH_ROW_DONE - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB fetching status constant: indicate that all the values for the current row have been fetched.
FLOAT - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a FLOAT data type.
FencedGenericNickname - class com.ibm.db2.wrapper.FencedGenericNickname.
The FencedGenericNickname class represents a nonrelational nickname in the fenced (untrusted) process space.
FencedGenericNickname(String, String, FencedGenericServer) - Constructor for class com.ibm.db2.wrapper.FencedGenericNickname
Construct a nickname with the specified schema and name for the specified data source server.
FencedGenericRemoteUser - class com.ibm.db2.wrapper.FencedGenericRemoteUser.
The FencedGenericRemoteUser class represents a user mapping for a nonrelational data source in the fenced (untrusted) process space.
FencedGenericRemoteUser(String, FencedGenericServer) - Constructor for class com.ibm.db2.wrapper.FencedGenericRemoteUser
Construct a user mapping with a specified name for the specified data source server.
FencedGenericServer - class com.ibm.db2.wrapper.FencedGenericServer.
The FencedGenericServer class is a subclass of the Server class and is the abstract base class for all nonrelational data source server functionality that operates in the fenced (untrusted) process space.
FencedGenericServer(String, FencedGenericWrapper) - Constructor for class com.ibm.db2.wrapper.FencedGenericServer
Construct a FencedGenericServer object for the specified wrapper with the specified name.
FencedGenericWrapper - class com.ibm.db2.wrapper.FencedGenericWrapper.
The FencedGenericWrapper class represents a nonrelational wrapper on the fenced (untrusted) process space.
FencedGenericWrapper() - Constructor for class com.ibm.db2.wrapper.FencedGenericWrapper
Construct a new FencedGenricWrapper object.
FencedNickname - class com.ibm.db2.wrapper.FencedNickname.
The FencedNickname class represents a nickname in the fenced (untrusted) process space.
FencedRemoteUser - class com.ibm.db2.wrapper.FencedRemoteUser.
The FencedRemoteUser class represents a user mapping in the fenced (untrusted) process space.
FencedServer - class com.ibm.db2.wrapper.FencedServer.
The FencedServer class is a subclass of the Server class and is the abstract base class for all server functionality that operates in the fenced (untrusted) process space.
FencedWrapper - class com.ibm.db2.wrapper.FencedWrapper.
The FencedWrapper class represents the wrapper on the fenced (untrusted) process space.
fetch() - Method in class com.ibm.db2.wrapper.RemotePassthru
Fetch a row from a pass-through cursor by copying a single-result row into the output data buffer.
fetch() - Method in class com.ibm.db2.wrapper.RemoteQuery
Fetch (retrieve) a single-result row from the remote data source into the output data buffers.
fetchLob(int, int) - Method in class com.ibm.db2.wrapper.RemoteQuery
Retrieve a large object (LOB) fragment from the remote source.
findConnection() - Method in class com.ibm.db2.wrapper.FencedServer
Retrieve the current active connection for the data source server.
findNickname(String, String) - Method in class com.ibm.db2.wrapper.UnfencedServer
Search for a nickname with the specified schema name and nickname name.
findRemoteUser(String) - Method in class com.ibm.db2.wrapper.Server
Search for a remote user mapping with the local name that is specified in the federated server's system catalog.
firstTupleCost() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the cost that is required to obtain the first result tuple for the query fragment that is represented by the reply.

G

getAction() - Method in class com.ibm.db2.wrapper.CatalogOption
Retrieve the action for the option.
getAction() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the action value.
getActualLength() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the actual length for the data value.
getAndResetErrorCode() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve and reset the SQL error code to report a DB2 Information Integrator error.
getAndResetFunctionName() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve and reset the caller function name that reports a DB2 Information Integrator error.
getAndResetTokens() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve and reset the substitution tokens that are used to report a DB2 Information Integrator error.
getAppCBStatus() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the status of the application control block.
getAppliedPredicate(int) - Method in class com.ibm.db2.wrapper.PredicateList
Retrieve a RequestExp object that describes the applied predicate at the specified position.
getAuthID() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the authorization ID for the server.
getAuthID() - Method in class com.ibm.db2.wrapper.UserInfo
Retrieve the authorization ID for this user mapping.
getAuthid() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the authorization ID for the current database.
getAvgLength() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the average length of the column.
getBigDecimal() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a BigDecimal instance.
getByte() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a byte value.
getCard() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the cardinality value.
getCodepage() - Method in class com.ibm.db2.wrapper.RemoteConnection
Retrieve the code page for the connection.
getCodepage() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the code page for character data types.
getCodepage() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the code page for character data types.
getCodepage() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the code page for character data type values.
getCodepage() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the code page for character data type values.
getCodepage() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the current database code page.
getCodepage1() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the single-byte character set (SBCS) code page for the column.
getCodepage2() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the double-byte character set (DBCS) code page for the column.
getColCard() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the cardinality of the column.
getColumn(String) - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the column with the specified name.
getColumnID() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the column ID.
getColumnName() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the name of the column.
getColumnName() - Method in class com.ibm.db2.wrapper.RequestExp
Column expression node: Retrieve the column name.
getColumnType() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the type of the column.
getColumnWithRemoteColumnName(String) - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the column with the specified remote column name.
getConnection() - Method in class com.ibm.db2.wrapper.RemoteOperation
Retrieve the connection for the remote operation.
getCorelib() - Method in class com.ibm.db2.wrapper.Wrapper
Retrieve the wrapper core library name.
getCorelib() - Method in class com.ibm.db2.wrapper.WrapperInfo
Retrieve the core library name.
getDB2InstallPath() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the DB2 Universal Database installation path.
getDB2InstancePath() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the DB2 Universal Database instance path.
getDB2Release() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Get the DB2 Universal Database release and the fix pack that this wrapper is currently running under.
getData() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a byte array.
getData() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the data buffer in an internal format.
getData() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the data value in an internal format.
getDataIndex() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the column number for the data value.
getDataType() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data type.
getDataType() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the data type.
getDataType() - Method in class com.ibm.db2.wrapper.RequestExp
Retrieve the object that describes the data type of the expression.
getDataType() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the data type.
getDataType() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the data type.
getDataType() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the type of data.
getDate() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a Date instance.
getDefault() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the default value for the column.
getDefiner() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the definer.
getDistinct() - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Test the DISTINCT indicator (SELECT DISTINCT clause).
getDouble() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a double value.
getDoubleByteDBCodepage() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the double-byte database code page.
getErrorCode() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve the SQL error code to report a DB2 Information Integrator error.
getExecDesc() - Method in class com.ibm.db2.wrapper.RemoteOperation
Retrieve the execution descriptor for the remote operation.
getExecDesc() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the execution descriptor object.
getFPages() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the fpages statistics for the nickname.
getFencedWrapperClass(WrapperInfo) - Method in class com.ibm.db2.wrapper.UnfencedWrapper
Retrieve the wrapper-specific FencedWrapper subclass name from the WrapperInfo object.
getFirstChild() - Method in class com.ibm.db2.wrapper.RequestExp
Operator expression node: Retrieve the first child of the operator.
getFirstColumn() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the first column information object.
getFirstLocalParm() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the first local parameter.
getFirstOption() - Method in class com.ibm.db2.wrapper.CatalogInfo
Retrieve the first option from the chain.
getFirstRemoteFunction() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the first remote function mapping object from the chain.
getFirstRemoteParm() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the first remote parameter.
getFloat() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a float value.
getForBitData() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the FOR BIT DATA flag for the column.
getForBitData() - Method in class com.ibm.db2.wrapper.Data
Retrieve the FOR BIT DATA flag.
getForBitData() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the FOR BIT DATA flag.
getForBitData() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the FOR BIT DATA flag which indicates whether the data is in binary format.
getForBitData() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the FOR BIT DATA flag which indicates binary data.
getForBitData() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the FOR BIT DATA flag which indicates binary data.
getFuncID() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the local function ID.
getFunctionName() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve the caller function name that reports a DB2 Information Integrator error.
getHandle() - Method in class com.ibm.db2.wrapper.Quantifier
Retrieve the handle of the quantifier.
getHandle() - Method in class com.ibm.db2.wrapper.RequestExp
Retrieve the expression handle.
getHeadExp(int) - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the expression at the specified position in the SELECT clause.
getHigh2Key() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the second-highest value for the column.
getInfo() - Method in class com.ibm.db2.wrapper.Nickname
Retrieve the nickname information stored in the federated server's system catalog as a result of running DDL statements.
getInfo() - Method in class com.ibm.db2.wrapper.RemoteUser
Retrieve the user mapping information that is stored in the federated server's system catalog as a result of running DDL statements.
getInfo() - Method in class com.ibm.db2.wrapper.Server
Retrieve the data source server information that is stored in the federated server's system catalog as a result of running DDL statements.
getInfo() - Method in class com.ibm.db2.wrapper.Wrapper
Retrieve the wrapper information that is stored in the federated server's system catalog as a result of running DDL statements.
getInitialInsts() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of machine instructions executed the first time the function is executed
getInitialIos() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of I/O operations the first time the function is executed
getInputData() - Method in class com.ibm.db2.wrapper.RemoteOperation
Retrieve the list of input values for the remote operation.
getInstsPerArgByte() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of machine instructions per byte of argument for one invocation of the function.
getInstsPerInvoke() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of machine instructions per invocation of the function.
getInt() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as an integer (int) value.
getInvariant() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the invariant value.
getIosPerArgByte() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of I/O operations per byte of argument for one invocation of the function.
getIosPerInvoke() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the number of I/O operations per invocation of the function.
getIsolationLevel() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the isolation level for the current database.
getKind() - Method in class com.ibm.db2.wrapper.RemoteConnection
Retrieve the connection type.
getKind() - Method in class com.ibm.db2.wrapper.RequestExp
Retrieve the kind of the expression.
getLocalName() - Method in class com.ibm.db2.wrapper.Nickname
Retrieve the local name for this nickname.
getLocalName() - Method in class com.ibm.db2.wrapper.RemoteUser
Retrieve the name of the user on the local database.
getLocalSchema() - Method in class com.ibm.db2.wrapper.Nickname
Retrieve the local schema for this nickname.
getLocalSchema() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the local schema name.
getLocalSignature() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the local signature of the function
getLocalSignature() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the signature.
getLong() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a long value.
getLow2Key() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the second-lowest value for the column.
getMappingName() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the mapping name.
getMaximumLength() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the maximum length for the data type.
getMaximumLength() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the maximum length for the data type.
getMaximumLength() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the maximum length of the data.
getMaximumLength() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the maximum length of the data.
getMessage() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve the error message string of this exception object.
getNPages() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the npages statistics for the nickname.
getName() - Method in class com.ibm.db2.wrapper.CatalogOption
Retrieve the name of the option.
getName() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the name of the constant, if defined.
getName() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the name of the data type.
getName() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the name for the data.
getName() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the name for the data.
getName() - Method in class com.ibm.db2.wrapper.Server
Retrieve the name of the data source server.
getName() - Method in class com.ibm.db2.wrapper.Wrapper
Retrieve the wrapper name.
getNewColumnName() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the new column name that is specified in an ALTER COLUMN statement that includes an ALTER (or SET) COLUMN clause to rename the column.
getNextChild() - Method in class com.ibm.db2.wrapper.RequestExp
Retrieve the sibling of the expression.
getNextColumn() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the next column in the columns chain.
getNextColumn(ColumnInfo) - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the next column information object.
getNextFunction() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the next function in the chain.
getNextOption(CatalogOption) - Method in class com.ibm.db2.wrapper.CatalogInfo
Retrieve the next option from the chain.
getNextOption() - Method in class com.ibm.db2.wrapper.CatalogOption
Retrieve the next option in the chain that this option belongs to.
getNextRFuncParm() - Method in class com.ibm.db2.wrapper.RFuncParmInfo
Retrieve the next function parameter in the chain.
getNextRemoteFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the next remote function mapping object from the chain.
getNickname() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the name of the nickname.
getNickname(int) - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the nickname that corresponds to the specified position in the FROM clause.
getNickname() - Method in class com.ibm.db2.wrapper.Quantifier
Retrieve the nickname that is referenced by this quantifier.
getNullIndicator() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the null indicator.
getNullIndicator() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the null indicator value.
getNullIndicator() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the null indicator for the data value.
getNullIndicator() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the null indicator for the data value.
getNulls() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the nulls-allowed flag.
getNumColumns() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the number of columns.
getNumberOfAppliedPredicates() - Method in class com.ibm.db2.wrapper.PredicateList
Retrieve the number of applied predicates.
getNumberOfChildren() - Method in class com.ibm.db2.wrapper.RequestExp
Operator expression node: Retrieve the number of children for the operator.
getNumberOfHeadExp() - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the number of elements in the SELECT clause.
getNumberOfOrderEntries() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the number of order entries.
getNumberOfPredicates() - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the number of elements (predicates) in the WHERE clause.
getNumberOfPredicates() - Method in class com.ibm.db2.wrapper.PredicateList
Retrieve the number of predicates in the list.
getNumberOfQuantifiers() - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the number of elements (quantifiers) in the FROM clause.
getNumberOfValues() - Method in class com.ibm.db2.wrapper.RuntimeDataDescList
Retrieve the number of data descriptors in the list.
getNumberOfValues() - Method in class com.ibm.db2.wrapper.RuntimeDataList
Retrieve the number of values in the list.
getObject() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as an Object instance.
getOption(String) - Method in class com.ibm.db2.wrapper.CatalogInfo
Retrieve the option object for the specified option name.
getOrderEntry(int) - Method in class com.ibm.db2.wrapper.Reply
Retrieve the order entry at the specified position in the ORDER by clause.
getOrdinal() - Method in class com.ibm.db2.wrapper.RFuncParmInfo
Retrieve the ordinal value.
getOrgLength() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the maximum length (in bytes) for the column.
getOrgScale() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the numeric scale of the column.
getOutputData() - Method in class com.ibm.db2.wrapper.RemoteOperation
Retrieve the list of output data buffers for the remote operation.
getOverflow() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the overflow statistics for the nickname.
getParameterOrder() - Method in class com.ibm.db2.wrapper.Reply
Retrieve a list of parameter handles.
getParent() - Method in class com.ibm.db2.wrapper.RequestExp
Retrieve the parent node of the expression.
getPassword() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the password for the server.
getPassword() - Method in class com.ibm.db2.wrapper.UserInfo
Retrieve the password for this user mapping.
getPercentArgByte() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Retruns the precentage of arguments bytes
getPrecision() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the precision for numeric data types.
getPrecision() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the precision for numeric data types.
getPrecision() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the precision for numeric data type values.
getPrecision() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the precision for numeric data type values.
getPredicate(int) - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the predicate expression at the specified position in the WHERE clause.
getPredicate(int) - Method in class com.ibm.db2.wrapper.PredicateList
Retrieve a RequestExp object that describes the predicate at the specified position.
getPrevFunction() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the previous function in the chain.
getPrevOption() - Method in class com.ibm.db2.wrapper.CatalogOption
Retrieve the previous option in the chain that this option belongs to.
getQuantifier(int) - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the quantifier at the specified position in the FROM clause.
getQuantifier() - Method in class com.ibm.db2.wrapper.RequestExp
Column expression node: Retrieve the quantifier to which this column belongs.
getQuantifierByHandle(int) - Method in class com.ibm.db2.wrapper.ParsedQueryFragment
Retrieve the quantifier with the specified handle in the FROM clause.
getRemoteConnectionKind() - Method in class com.ibm.db2.wrapper.FencedServer
Retrieve the type of connection that this data source server supports as indicated by the RemoteConnection.NO_PHASE_KIND or RemoteConnection.ONE_PHASE_KIND constants.
getRemoteFunction(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the remote function mapping object with the specified name from the chain.
getRemoteFunctionName() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the remote name of the function
getRemoteLength() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the remote length of the data value.
getRemotePrecision() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the remote precision for the numeric data type values.
getRemoteResultType() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Returns the result type of the function.
getRemoteScale() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the remote scale of the numeric data type values.
getRemoteType() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the remote type of the data value.
getRemoteType() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the remote type of the data.
getRowStatus() - Method in class com.ibm.db2.wrapper.RemoteQuery
Retrieve the current row status.
getSQLStatement() - Method in class com.ibm.db2.wrapper.RemotePassthru
Retrieve the SQL statement for the remote pass-through operation.
getScale() - Method in class com.ibm.db2.wrapper.RequestConstant
Retrieve the scale for numeric data types.
getScale() - Method in class com.ibm.db2.wrapper.RequestExpType
Retrieve the scale for numeric data types.
getScale() - Method in class com.ibm.db2.wrapper.RuntimeData
Retrieve the scale for numeric data type values.
getScale() - Method in class com.ibm.db2.wrapper.RuntimeDataDesc
Retrieve the scale for numeric data type values.
getSchema() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the local schema name of the nickname.
getSelectivity(PredicateList) - Method in class com.ibm.db2.wrapper.UnfencedGenericServer
Calculate the selectivity of a list of predicates.
getServer() - Method in class com.ibm.db2.wrapper.Nickname
Retrieve the data source server that contains this nickname.
getServer() - Method in class com.ibm.db2.wrapper.RemoteConnection
Retrieve the data source server object that contains this connection.
getServer() - Method in class com.ibm.db2.wrapper.RemoteOperation
Retrieve the data source server that owns the remote operation.
getServer() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the data source server that this reply belongs to.
getServerName() - Method in class com.ibm.db2.wrapper.NicknameInfo
Retrieve the server name of the nickname.
getServerName() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the name of the server.
getServerName() - Method in class com.ibm.db2.wrapper.UserInfo
Retrieve the data source server name for this user mapping.
getShort() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a short value.
getSignature() - Method in class com.ibm.db2.wrapper.RequestExp
Operator expression node: Retrieve the signature of the operator.
getSingleByteDBCodepage() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Retrieve the single-byte database code page.
getSpecificName() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the specific name.
getStackTrace(Throwable) - Static method in class com.ibm.db2.wrapper.WrapperException
Save the stack trace of the exception into a string.
getStatus() - Method in class com.ibm.db2.wrapper.RemoteQuery
Retrieve the status of the query.
getString() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a string.
getTime() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a Time instance.
getTimestamp() - Method in class com.ibm.db2.wrapper.Data
Retrieve the data as a Timestamp instance.
getTimestamp() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Retrieve the timestamp value.
getToken() - Method in class com.ibm.db2.wrapper.RequestExp
Operator expression node: Retrieve the token of the operator.
getTokens() - Method in class com.ibm.db2.wrapper.WrapperException
Retrieve the substitution tokens that are used to report a DB2 Information Integrator error.
getType() - Method in class com.ibm.db2.wrapper.FencedGenericWrapper
Retrieve the wrapper type.
getType() - Method in class com.ibm.db2.wrapper.Server
Retrieve the data source server type.
getType() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the type of the server.
getType() - Method in class com.ibm.db2.wrapper.UnfencedGenericWrapper
Retrieve the wrapper type.
getType() - Method in class com.ibm.db2.wrapper.Wrapper
Retrieve the wrapper type.
getType() - Method in class com.ibm.db2.wrapper.WrapperInfo
Retrieve the wrapper type.
getTypeName() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the name of the local column type.
getTypeSchema() - Method in class com.ibm.db2.wrapper.ColumnInfo
Retrieve the schema of the local column type.
getUser() - Method in class com.ibm.db2.wrapper.RemoteConnection
Retrieve the user mapping to authenticate this connection.
getValue() - Method in class com.ibm.db2.wrapper.CatalogOption
Retrieve the option value.
getValue() - Method in class com.ibm.db2.wrapper.RequestExp
Constant expression node: Retrieve the RequestConstant object that represents the value of the constant.
getValue(int) - Method in class com.ibm.db2.wrapper.RuntimeDataDescList
Retrieve the data descriptor at the specified position in the list.
getValue(int) - Method in class com.ibm.db2.wrapper.RuntimeDataList
Retrieve the value at the specified position in the list.
getVersion() - Method in class com.ibm.db2.wrapper.Server
Retrieve the version of the data source server.
getVersion() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the version string for the server.
getVersion() - Method in class com.ibm.db2.wrapper.Wrapper
Retrieve the version of the wrapper, which represents the version that is currently running.
getVersion() - Method in class com.ibm.db2.wrapper.WrapperInfo
Retrieve the wrapper version.
getWrapper() - Method in class com.ibm.db2.wrapper.Nickname
Retrieve the wrapper instance that this nickname belongs to.
getWrapper() - Method in class com.ibm.db2.wrapper.RemoteConnection
Retrieve the wrapper object.
getWrapper() - Method in class com.ibm.db2.wrapper.RemoteOperation
Get the wrapper object.
getWrapper() - Method in class com.ibm.db2.wrapper.RemoteUser
Retrieve the wrapper instance that this user mapping belongs to.
getWrapper() - Method in class com.ibm.db2.wrapper.Server
Retrieve the wrapper object that this data source server belongs to.
getWrapperName() - Method in class com.ibm.db2.wrapper.ServerInfo
Retrieve the name of the wrapper that contains the server.
getWrapperName() - Method in class com.ibm.db2.wrapper.WrapperInfo
Retrieve the wrapper name.

I

INT - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates an INTEGER (INT) data type.
initializeMyNickname(NicknameInfo) - Method in class com.ibm.db2.wrapper.Nickname
Perform the necessary nickname initialization.
initializeMyServer(ServerInfo) - Method in class com.ibm.db2.wrapper.Server
Initialize the data source server with valid federated server's system catalog information.
initializeMyUser(UserInfo) - Method in class com.ibm.db2.wrapper.RemoteUser
Perform the necessary user mapping initialization.
initializeMyWrapper(WrapperInfo) - Method in class com.ibm.db2.wrapper.Wrapper
Initialize the wrapper object state from the catalog information object.
insertColumn(ColumnInfo) - Method in class com.ibm.db2.wrapper.NicknameInfo
Insert a column information object at the position given by its column ID field.
insertLocalParm(RFuncParmInfo) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Insert a local parameter in the local parameters list.
insertRemoteFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.ServerInfo
Insert a remote function mapping object into the chain.
insertRemoteFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.UnfencedServer
This function adds a temporary remote function mapping based on the RemoteFunctionInfo object to the server.
insertRemoteFunction(DefaultRemoteFunction) - Method in class com.ibm.db2.wrapper.UnfencedServer
This function adds a temporary remote function mapping based on the DefaultRemoteFunction object to the server.
insertRemoteParm(RFuncParmInfo) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Insert a remote parameter in the remote parameters list.
isActionValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if an action was specified.
isAuthIDValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify whether an authorization ID value is specified.
isAuthIDValid() - Method in class com.ibm.db2.wrapper.UserInfo
Verify whether an authorization ID is specified.
isAvgLengthValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether an average length is specified for the column.
isCachingAllowed() - Method in class com.ibm.db2.wrapper.NicknameInfo
Returns true if it is allowed to use the Nickname in local caches like MQTs
isCachingAllowedValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether isCachingAllowed is specified.
isCardValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether a cardinality value is specified.
isCodepage1Valid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a single-byte character set (SBCS) code page is specified for the column.
isCodepage2Valid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a double-byte character set (DBCS) code page is specified for the column.
isColCardValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a cardinality value is specified for the column.
isColumnIDValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a column ID (position) is specified for the column.
isColumnNameValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a name is specified for the column.
isColumnTypeValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a local type is specified for the column.
isConnected() - Method in class com.ibm.db2.wrapper.RemoteConnection
Verify whether the connection with the data source server exists.
isCorelibValid() - Method in class com.ibm.db2.wrapper.WrapperInfo
Verify whether a core library is specified.
isDataNull() - Method in class com.ibm.db2.wrapper.RequestConstant
Indicate whether the constant is null.
isDataNull() - Method in class com.ibm.db2.wrapper.RuntimeData
Indicate whether the data value is null.
isDataNullable() - Method in class com.ibm.db2.wrapper.RuntimeData
Indicate whether the data value is nullable.
isDefaultValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a default value is specified for the column.
isDefinerValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a definer was specified.
isFPagesValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether the fpages statistics is specified.
isForBitDataValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a FOR BIT DATA flag is specified for the column.
isFuncIDValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a function ID was specified.
isHigh2KeyValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a second-highest value is specified for the column.
isInitialInstsValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of machine instructions executed the first time the function is executed was specified
isInitialIosValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of I/O operations the first time the function is executed was specified
isInstsPerArgByteValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of machine instructions per byte of argument for one invocation was specified
isInstsPerInvokeValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of machine instructions per invocation was specified
isIosPerArgByteValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of I/O operations per byte of argument for one invocation was specified
isIosPerInvokeValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the number of I/O operations per invocation was specified
isLocalSignatureValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a local function signature was specified
isLow2KeyValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a second-lowest value is specified for the column.
isMappingNameValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a mapping name was specified.
isNPagesValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether the npages statistics is specified.
isNameValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify whether the value of server name is specified.
isNameValid() - Method in class com.ibm.db2.wrapper.WrapperInfo
Verify whether a name is specified.
isNewColumnNameValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a new name is specified for the column.
isNicknameValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether the name of the nickname is specified.
isNullsValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a nulls-allowed flag is specified for the column.
isOrdinalValid() - Method in class com.ibm.db2.wrapper.RFuncParmInfo
check if an ordinal value was specified.
isOrgLengthValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether an original length is specified for the column.
isOrgScaleValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether an original scale is specified for the column.
isOverflowValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether an overflow statistics is specified.
isPasswordValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify whether a password value is specified.
isPercentArgByteValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a value for the percentage of arguments bytes was specified
isRemoteFunctionNameValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a remote function name was specified
isRemoteResultTypeValid() - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Check to see if a remote result type was specified
isReserved() - Method in class com.ibm.db2.wrapper.CatalogOption
Indicate whether the option is a DB2-reserved option.
isReservedFunctionOption(String) - Static method in class com.ibm.db2.wrapper.UnfencedServer
Returns true if an option is a reserved function option
isSchemaValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether a schema name is specified.
isSchemaValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a schema name was specified.
isSemanticNull() - Method in class com.ibm.db2.wrapper.RuntimeData
Indicate whether the data value is semantic null.
isServerNameValid() - Method in class com.ibm.db2.wrapper.NicknameInfo
Verify whether a server name is specified.
isServerNameValid() - Method in class com.ibm.db2.wrapper.UserInfo
Verify whether a data source server name is specified.
isSignatureValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a signature was specified.
isSpecificNameValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a specific name was specified.
isTimestampValid() - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Check to see if a timestamp was specified.
isTypeNameValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a local type name is specified for the column.
isTypeSchemaValid() - Method in class com.ibm.db2.wrapper.ColumnInfo
Verify whether a local type schema is specified for the column.
isTypeValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify whether a type value is specified.
isTypeValid() - Method in class com.ibm.db2.wrapper.WrapperInfo
Verify whether a type is specified.
isVersionValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify whether a version value is specified.
isVersionValid() - Method in class com.ibm.db2.wrapper.WrapperInfo
Verify whether a version is specified.
isWrapperNameValid() - Method in class com.ibm.db2.wrapper.ServerInfo
Verify if a wrapper name value is specified.

L

LONG - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a LONG data type.
lobDataReady(int, int, int, int) - Method in class com.ibm.db2.wrapper.RemoteQuery
Notify the federated server that a fragment of data from a LOB column is fetched (retrieved).

M

markDisconnected() - Method in class com.ibm.db2.wrapper.RemoteConnection
Set the flag to indicate that the connection with the data source server finished.

N

NONE - Static variable in class com.ibm.db2.wrapper.CatalogOption
Action constant; indicates no action for the option.
NONE - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates an unknown data type.
NO_PHASE_KIND - Static variable in class com.ibm.db2.wrapper.RemoteConnection
Constant to indicate that no transactions are supported.
Nickname - class com.ibm.db2.wrapper.Nickname.
The Nickname class models collections of data that a data source server manages.
NicknameInfo - class com.ibm.db2.wrapper.NicknameInfo.
The NicknameInfo class encapsulates the catalog information for a nickname object including column definitions from the CREATE NICKNAME and ALTER NICKNAME statements.
NicknameInfo() - Constructor for class com.ibm.db2.wrapper.NicknameInfo
Construct a default (empty) nickname information object.
nextReply() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the next reply in the chain.

O

ONE_PHASE_KIND - Static variable in class com.ibm.db2.wrapper.RemoteConnection
Constant to indicate that one-phase commit transactions are supported.
OPEN - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant to be used with getStatus and setStatus methods to indicate that the RemoteQuery object is in open state.
OPEN_LOB_INIT - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate the start of processing for the input LOB values.
OPEN_LOB_LAST - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate that this is the last fragment for the current input LOB value.
OPEN_LOB_MORE - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate that more fragments are available for the current input LOB value.
OPEN_LOB_NEW - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate that the wrapper expects data fragments for a new input LOB value.
OPEN_NON_LOB_NEXT - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate that only input non-LOB values are to be processed.
OPEN_ROW_DONE - Static variable in class com.ibm.db2.wrapper.RemoteQuery
LOB input status constant: indicate that all the input values have been processed.
OPERATOR - Static variable in class com.ibm.db2.wrapper.RequestExp
Constant to indicate that the expression is an operator.
open() - Method in class com.ibm.db2.wrapper.RemotePassthru
Open a cursor for a pass-through operation and enable the data source to return the first result row for the query.
open() - Method in class com.ibm.db2.wrapper.RemoteQuery
Allow the wrapper to prepare the remote data source to return the first result row for the query.
openInputLob(int, int, int, Object) - Method in class com.ibm.db2.wrapper.RemoteQuery
Allow the wrapper to prepare the remote data source to return the first result row for the query that contains input large object (LOB) parameters.

P

ParsedQueryFragment - class com.ibm.db2.wrapper.ParsedQueryFragment.
The ParsedQueryFragment class represents the base class of both the Request class and Reply class.
PredicateList - class com.ibm.db2.wrapper.PredicateList.
The PredicateList describes two lists of predicates to estimate the selectivity factor.
planRequest(Request) - Method in class com.ibm.db2.wrapper.UnfencedGenericServer
Analyze a proposed plan and determine what part of the plan (if any) can be pushed down to the remote data source.
prepare(RuntimeDataDescList) - Method in class com.ibm.db2.wrapper.RemotePassthru
Prepare a pass-through operation.

Q

Quantifier - class com.ibm.db2.wrapper.Quantifier.
The Quantifier class encapsulates information for a quantifier of a Request.

R

READY - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant to be used with getStatus and setStatus methods to indicate that the RemoteQuery object is ready to fetch the next row.
REMOTE_AUTHID_OPTION - Static variable in class com.ibm.db2.wrapper.RemoteUser
Constant that represents the name of the remote authorization ID option.
REMOTE_PASSWORD_OPTION - Static variable in class com.ibm.db2.wrapper.RemoteUser
Constant that represents the name of the remote authorization password option.
RFuncParmInfo - class com.ibm.db2.wrapper.RFuncParmInfo.
The RFuncParmInfo class represents the information that describes a function parameter in a function mapping.
RFuncParmInfo() - Constructor for class com.ibm.db2.wrapper.RFuncParmInfo
Default constructor.
RFuncParmInfo(short) - Constructor for class com.ibm.db2.wrapper.RFuncParmInfo
Construct a function parameter with the specified ordinal.
RemoteConnection - class com.ibm.db2.wrapper.RemoteConnection.
The RemoteConnection class represents a connection (session) with a data source server.
RemoteConnection(FencedServer, FencedRemoteUser, int, long) - Constructor for class com.ibm.db2.wrapper.RemoteConnection
Construct a connection for the specified server with the user authorization and transaction type as specified.
RemoteFunctionInfo - class com.ibm.db2.wrapper.RemoteFunctionInfo.
The RemoteFunctionInfo class represents the catalog information and describes the function mapping with a remote source.
RemoteFunctionInfo() - Constructor for class com.ibm.db2.wrapper.RemoteFunctionInfo
Class constructor.
RemoteFunctionInfo(int, String, String, String, int, String, String, Timestamp) - Constructor for class com.ibm.db2.wrapper.RemoteFunctionInfo
Construct an instance with the specified values.
RemoteOperation - class com.ibm.db2.wrapper.RemoteOperation.
The RemoteOperation class serves as the base class for classes that represent various remote operations.
RemotePassthru - class com.ibm.db2.wrapper.RemotePassthru.
The RemotePassthru class represents a pass-through session on a remote data source.
RemotePassthru(RemoteConnection, long) - Constructor for class com.ibm.db2.wrapper.RemotePassthru
Construct a new pass-through object for the specified connection.
RemoteQuery - class com.ibm.db2.wrapper.RemoteQuery.
The RemoteQuery class represents SELECT statement operations on a remote data source.
RemoteQuery(RemoteConnection, long) - Constructor for class com.ibm.db2.wrapper.RemoteQuery
Construct a new query object for the specified connection.
RemoteUser - class com.ibm.db2.wrapper.RemoteUser.
The RemoteUser class represents the authorizations to use on a data source server.
Reply - class com.ibm.db2.wrapper.Reply.
The Reply class represents the portion of a request that the wrapper processes.
Reply(Request, UnfencedGenericServer) - Constructor for class com.ibm.db2.wrapper.Reply
Instantiate a Reply for the specified data source (Server) and Request.
Request - class com.ibm.db2.wrapper.Request.
The Request class encapsulates a query fragment that is analyzed and processed by the wrapper.
RequestConstant - class com.ibm.db2.wrapper.RequestConstant.
The RequestConstant class describes a constant that is used in a query expression during query planning.
RequestExp - class com.ibm.db2.wrapper.RequestExp.
The RequestExp class represents a node in an expression tree.
RequestExpType - class com.ibm.db2.wrapper.RequestExpType.
The RequestExpType class describes the type of node in an expression tree.
RuntimeData - class com.ibm.db2.wrapper.RuntimeData.
The RuntimeData class represents each column value that is transferred between the federated server and a wrapper.
RuntimeDataDesc - class com.ibm.db2.wrapper.RuntimeDataDesc.
The RuntimeDataDesc class is created by the federated server to describe each column value that is transferred between the federated server and a wrapper.
RuntimeDataDesc(short, int, short, short) - Constructor for class com.ibm.db2.wrapper.RuntimeDataDesc
Construct a new RuntimeDataDesc object with the specified attributes to describe a column of a result set.
RuntimeDataDesc(short, int, short, short, byte) - Constructor for class com.ibm.db2.wrapper.RuntimeDataDesc
Construct a new RuntimeDataDesc object with the specified attributes to describe a column of a result set.
RuntimeDataDesc(short, int, short, short, byte, byte) - Constructor for class com.ibm.db2.wrapper.RuntimeDataDesc
Construct a new RuntimeDataDesc object with the specified attributes to describe a column of a result set.
RuntimeDataDesc(short, int, short, short, byte, byte, String) - Constructor for class com.ibm.db2.wrapper.RuntimeDataDesc
Construct a new RuntimeDataDesc object with the specified attributes to describe a column of a result set.
RuntimeDataDesc(short, int, short, short, byte, byte, String, short) - Constructor for class com.ibm.db2.wrapper.RuntimeDataDesc
Construct a new RuntimeDataDesc object with the specified attributes to describe a column of a result set.
RuntimeDataDescList - class com.ibm.db2.wrapper.RuntimeDataDescList.
The RuntimeDataDescList class encapsulates a list of RuntimeDataDesc objects that describe a row in a result set or a list of input parameters.
RuntimeDataList - class com.ibm.db2.wrapper.RuntimeDataList.
The RuntimeDataList class encapsulates a list of RuntimeData objects that represent either a row in a result set or a list of input parameters.
reExecCost() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the cost needed to rerun the query fragment that is represented by the reply.
reopen(short) - Method in class com.ibm.db2.wrapper.RemoteQuery
Reset a previously opened result stream and prepares the data source to return more result sets, possibly based on different parameter bindings.
reopenInputLob(short, int, int, int, Object) - Method in class com.ibm.db2.wrapper.RemoteQuery
Reset a previously opened result stream and prepares the data source to return more result sets, possibly based on different parameter bindings for queries with input large object (LOB) parameters.
reportEof() - Method in class com.ibm.db2.wrapper.RemoteOperation
Report an end-of-file condition during a fetch operation.
reportEof() - Method in class com.ibm.db2.wrapper.RemotePassthru
Report an end-of-file condition during a fetch operation.
reportEof() - Method in class com.ibm.db2.wrapper.RemoteQuery
Report an end-of-file condition during a fetch operation.
reportWarning(int, String, String[]) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Report a warning to the DB2 Information Integrator user.
rollback() - Method in class com.ibm.db2.wrapper.RemoteConnection
Indicate the unsuccessful completion of a transaction and that the remote data source then rolls back the transaction.

S

SET - Static variable in class com.ibm.db2.wrapper.CatalogOption
Action constant; indicates that the option is set to a new value.
SHORT - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a SHORT data type.
SQL_NO_NULLS - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates the column NULL status as NO NULLS.
SQL_NULLABLE - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates the column NULL status as NULLABLE.
SQL_NULLABLE_UNKNOWN - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates the column NULL status as UNKNOWN.
Server - class com.ibm.db2.wrapper.Server.
The Server class is the abstract base class for all server functionality.
ServerInfo - class com.ibm.db2.wrapper.ServerInfo.
The ServerInfo class encapsulates the catalog information for a server object from the CREATE SERVER and ALTER SERVER statements.
ServerInfo() - Constructor for class com.ibm.db2.wrapper.ServerInfo
Construct a default (empty) server information object.
ServerInfo(String, String, String, String) - Constructor for class com.ibm.db2.wrapper.ServerInfo
Construct a fully initialized server information object.
setAction(int) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the action value.
setActualLength(int) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the actual length for the data value.
setAuthID(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the authorization ID for the server.
setAuthID(String) - Method in class com.ibm.db2.wrapper.UserInfo
Set the authorization ID for this user mapping.
setAvgLength(int) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the average length of the column.
setBigDecimal(BigDecimal) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a BigDecimal instance.
setBinary(byte[]) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a binary value.
setByte(byte) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a byte.
setCachingAllowed(boolean) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the isCachingAllowed flag for the nickname determining if it is allowed to use the Nickname in local caches like MQTs
setCard(long) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the cardinality value.
setCodepage1(short) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the single-byte character set (SBCS) code page for the column.
setCodepage2(short) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the double-byte character set (DBCS) code page for the column.
setColCard(long) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the cardinality of the column.
setColumnID(short) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the column ID, which represents the position of he column.
setColumnName(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the name of the column.
setColumnType(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the type of the column.
setDataNull() - Method in class com.ibm.db2.wrapper.RuntimeData
Mark the data value as null.
setDate(Date) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a Date instance.
setDefault(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the default value for the column.
setDefiner(String) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the definer.
setDistinct(boolean) - Method in class com.ibm.db2.wrapper.Reply
Set the DISTINCT indicator that is specified in the SELECT DISTINCT statement.
setDouble(double) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a double.
setErrorCode(int) - Method in class com.ibm.db2.wrapper.WrapperException
Set the SQL error code for reporting a DB2 Information Integrator error.
setExecDesc(Serializable) - Method in class com.ibm.db2.wrapper.Reply
Set the execution descriptor object.
setFPages(long) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the fpages statistics for the nickname.
setFencedWrapperClass(WrapperInfo, String) - Method in class com.ibm.db2.wrapper.UnfencedWrapper
Add the wrapper-specific FencedWrapper subclass name to the WrapperInfo object.
setFloat(float) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a float.
setForBitData(boolean) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the FOR BIT DATA flag for the column.
setFriendlyDivBy0() - Method in class com.ibm.db2.wrapper.RuntimeData
Indicate that a value is null because a divide by zero error occurred.
setFriendlyException() - Method in class com.ibm.db2.wrapper.RuntimeData
Indicate that a value is null because of a numeric exception.
setFuncID(int) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the local function ID.
setFunctionName(String) - Method in class com.ibm.db2.wrapper.WrapperException
Set the caller function name for reporting a DB2 Information Integrator error.
setHigh2Key(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the second-highest value for the column.
setInitialInsts(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of machine instructions executed the first time the function is executed
setInitialIos(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of I/O operations the first time the function is executed
setInstsPerArgByte(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of machine instructions per byte of argument for one invocation of the function.
setInstsPerInvoke(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of machine instructions per invocation of the function.
setInt(int) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as an int.
setIosPerArgByte(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of I/O operations per byte of argument for one invocation of the function.
setIosPerInvoke(double) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the number of I/O operations per invocation of the function.
setLobNext() - Method in class com.ibm.db2.wrapper.RemoteQuery
Notify the federated server when a current fetched row contains large object (LOB) values and that the fetchLob method is to be invoked.
setLocalSchema(String) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the local schema name.
setLocalSignature(String) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the local signature.
setLocalSignature(String) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the signature.
setLong(long) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a long.
setLow2Key(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the second-lowest value for the column.
setMappingName(String) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the mapping name.
setMyDefaultRemoteFunctionMappings() - Method in class com.ibm.db2.wrapper.UnfencedServer
Allows the wrapper to add temporary function mappings to the current server via the UnfencedServer.insertRemoteFunction(RemoteFunctionInfo) and UnfencedServer.insertRemoteFunction(DefaultRemoteFunction) method.
setNPages(long) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the npages statistics for the nickname.
setNewColumnName(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the new name for the column.
setNextFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the next function in the chain.
setNextRFuncParm(RFuncParmInfo) - Method in class com.ibm.db2.wrapper.RFuncParmInfo
Set the next function parameter in the chain.
setNextReply(Reply) - Method in class com.ibm.db2.wrapper.Reply
Specify the next reply in the chain.
setNickname(String) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the name of the nickname.
setNullIndicator(short) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the null indicator for the data value.
setNulls(boolean) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the nulls-allowed flag.
setNumberOfValues(int) - Method in class com.ibm.db2.wrapper.RuntimeDataDescList
Set the number of data descriptors in the list.
setObject(Object) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as an Object instance.
setOrdinal(short) - Method in class com.ibm.db2.wrapper.RFuncParmInfo
Set the ordinal value.
setOrgLength(int) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the maximum length (in bytes) for the column.
setOrgScale(short) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the numeric scale of the column.
setOverflow(long) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the overflow statistics for the nickname.
setPassword(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the password for the server.
setPercentArgByte(short) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the percentage of arguments bytes
setPrecision(byte) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the precision for numeric data type values.
setPrevFunction(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the previous function in the chain.
setRemoteFunctionName(String) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the remote function name.
setRemoteResultType(short) - Method in class com.ibm.db2.wrapper.DefaultRemoteFunction
Set the value for the result type.
setRowStatus(int) - Method in class com.ibm.db2.wrapper.RemoteQuery
Set the current row status.
setScale(byte) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the scale for numeric data type values.
setSchema(String) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the local schema name of the nickname.
setServerName(String) - Method in class com.ibm.db2.wrapper.NicknameInfo
Set the server name of the nickname.
setServerName(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the server name.
setServerName(String) - Method in class com.ibm.db2.wrapper.UserInfo
Set the data source server name for this user mapping.
setShort(short) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a short.
setSpecificName(String) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the specific name.
setStatus(byte) - Method in class com.ibm.db2.wrapper.RemoteQuery
Set the query status.
setString(String) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a string.
setTime(Time) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a Time instance.
setTimestamp(Timestamp) - Method in class com.ibm.db2.wrapper.RemoteFunctionInfo
Set the timestamp value.
setTimestamp(Timestamp) - Method in class com.ibm.db2.wrapper.RuntimeData
Set the data value as a Timestamp instance.
setTokens(String[]) - Method in class com.ibm.db2.wrapper.WrapperException
Set the substitution tokens that are used for reporting a DB2 Information Integrator error.
setType(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the type of the server.
setType(char) - Method in class com.ibm.db2.wrapper.WrapperInfo
Set the wrapper type.
setTypeName(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the name of the local column type.
setTypeSchema(String) - Method in class com.ibm.db2.wrapper.ColumnInfo
Set the schema of the local column type.
setValue(RuntimeDataDesc, int) - Method in class com.ibm.db2.wrapper.RuntimeDataDescList
Set the data descriptor at the specified position in the list.
setVersion(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the version string for the server.
setVersion(int) - Method in class com.ibm.db2.wrapper.WrapperInfo
Set the wrapper version.
setWrapperName(String) - Method in class com.ibm.db2.wrapper.ServerInfo
Set the name of the wrapper that contains the server.
setWrapperName(String) - Method in class com.ibm.db2.wrapper.WrapperInfo
Set the wrapper name.

T

TIME - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a TIME data type.
TIMESTAMP - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a TIMESTAMP data type.
totalCost() - Method in class com.ibm.db2.wrapper.Reply
Retrieve the total execution cost that is needed to run the query fragment that is represented by the reply.
traceEnabled() - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Verify whether the DB2 Information Integrator tracing is enabled.
traceError(int, String, int, String) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace an error message.
traceException(int, String, int, Throwable) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace an exception and its call stack.
traceFunctionData(int, String, int, String) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace function data using a single data trace parameter.
traceFunctionData(int, String, int, String, String) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace function data using two data trace parameters.
traceFunctionData(int, String, int, String, String, String) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace function data using three data trace parameters.
traceFunctionEntry(int, String) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace a function entry.
traceFunctionReturnCode(int, String, int) - Static method in class com.ibm.db2.wrapper.WrapperUtilities
Trace a function return code.

U

UNBOUND - Static variable in class com.ibm.db2.wrapper.RequestExp
Constant to indicate that the expression is an unbound parameter.
UNREADY - Static variable in class com.ibm.db2.wrapper.RemoteQuery
Status constant to be used with getStatus and setStatus methods to indicate that the RemoteQuery object is not yet ready to fetch the next row.
UnfencedGenericNickname - class com.ibm.db2.wrapper.UnfencedGenericNickname.
The UnfencedGenericNickname class represents a nonrelational nickname in the unfenced (trusted) process space.
UnfencedGenericNickname(String, String, UnfencedGenericServer) - Constructor for class com.ibm.db2.wrapper.UnfencedGenericNickname
Construct a nickname with the specified schema and name for the specified data source server.
UnfencedGenericRemoteUser - class com.ibm.db2.wrapper.UnfencedGenericRemoteUser.
The UnfencedGenericRemoteUser class represents a user mapping for a nonrelational data source in the unfenced (trusted) process space.
UnfencedGenericRemoteUser(String, UnfencedGenericServer) - Constructor for class com.ibm.db2.wrapper.UnfencedGenericRemoteUser
Construct a user mapping with a specified name for the specified server.
UnfencedGenericServer - class com.ibm.db2.wrapper.UnfencedGenericServer.
The UnfencedGenericServer class is a subclass of the Server class and is the abstract base class for all nonrelational data source server functionality that operates in the unfenced (trusted) process space.
UnfencedGenericServer(String, UnfencedGenericWrapper) - Constructor for class com.ibm.db2.wrapper.UnfencedGenericServer
Construct a UnfencedGenericServer object for the specified wrapper with the specified name.
UnfencedGenericWrapper - class com.ibm.db2.wrapper.UnfencedGenericWrapper.
The UnfencedGenericWrapper class represents a nonrelational wrapper on the unfenced (trusted) process space.
UnfencedGenericWrapper() - Constructor for class com.ibm.db2.wrapper.UnfencedGenericWrapper
Construct a new UnfencedGenericWrapper object.
UnfencedNickname - class com.ibm.db2.wrapper.UnfencedNickname.
The UnfencedNickname class represents a nickname in the unfenced (trusted) process space.
UnfencedRemoteUser - class com.ibm.db2.wrapper.UnfencedRemoteUser.
The UnfencedRemoteUser class represents a user mapping in the unfenced (trusted) process space.
UnfencedServer - class com.ibm.db2.wrapper.UnfencedServer.
The UnfencedServer class is a subclass of the Server class and is the abstract base class for all data source server functionality that operates in the unfenced (trusted) process space.
UnfencedServer(String, int, UnfencedWrapper) - Constructor for class com.ibm.db2.wrapper.UnfencedServer
 
UnfencedWrapper - class com.ibm.db2.wrapper.UnfencedWrapper.
The UnfencedWrapper class that represents the wrapper on the unfenced (trusted) process space.
UserInfo - class com.ibm.db2.wrapper.UserInfo.
The UserInfo class encapsulates the catalog information for a user mapping from the CREATE USER MAPPING and ALTER USER MAPPING statements.
UserInfo() - Constructor for class com.ibm.db2.wrapper.UserInfo
Construct a default (empty) user information object.

V

VARCHAR - Static variable in class com.ibm.db2.wrapper.Data
Constant that indicates a VARCHAR data type.
verifyMyAlterNicknameInfo(NicknameInfo) - Method in class com.ibm.db2.wrapper.UnfencedNickname
Validate the nickname information that is specified in ALTER NICKNAME statements.
verifyMyAlterServerInfo(ServerInfo) - Method in class com.ibm.db2.wrapper.UnfencedServer
Validate the data source server information that is specified in ALTER SERVER statements.
verifyMyAlterUserInfo(UserInfo) - Method in class com.ibm.db2.wrapper.UnfencedRemoteUser
Validate the user mapping information that is specified in the ALTER USER MAPPING statements.
verifyMyAlterWrapperInfo(WrapperInfo) - Method in class com.ibm.db2.wrapper.UnfencedWrapper
Validate the information that is specified on an ALTER WRAPPER statement.
verifyMyFunctionMappingInfo(RemoteFunctionInfo) - Method in class com.ibm.db2.wrapper.UnfencedServer
Validates function mapping information that is specified in CREATE FUNCTION MAPPING statements.
verifyMyRegisterNicknameInfo(NicknameInfo) - Method in class com.ibm.db2.wrapper.Nickname
Validate the nickname information that is specified in CREATE NICKNAME statements.
verifyMyRegisterServerInfo(ServerInfo) - Method in class com.ibm.db2.wrapper.UnfencedServer
Validate the data source server information that is specified in CREATE SERVER statements.
verifyMyRegisterUserInfo(UserInfo) - Method in class com.ibm.db2.wrapper.UnfencedRemoteUser
Validate the user mapping information that is specified in the CREATE USER MAPPING statements.
verifyMyRegisterWrapperInfo(WrapperInfo) - Method in class com.ibm.db2.wrapper.UnfencedWrapper
Validate the information that is specified on a CREATE WRAPPER statement.

W

Wrapper - class com.ibm.db2.wrapper.Wrapper.
The Wrapper class represents the base class for a set of data sources.
WrapperException - exception com.ibm.db2.wrapper.WrapperException.
The WrapperException class is the Exception subclass that is used by the Java API to report exceptions.
WrapperException(String) - Constructor for class com.ibm.db2.wrapper.WrapperException
Construct a new exception object with the specified message.
WrapperException(int, String, String[]) - Constructor for class com.ibm.db2.wrapper.WrapperException
Construct an exception object that reports a DB2 Information Integrator error by its SQL code, caller function name, and tokens.
WrapperInfo - class com.ibm.db2.wrapper.WrapperInfo.
The WrapperInfo class encapsulates the catalog information for a wrapper object from the CREATE WRAPPER and ALTER WRAPPER statements.
WrapperInfo() - Constructor for class com.ibm.db2.wrapper.WrapperInfo
Construct a new default (empty) wrapper information object.
WrapperUtilities - class com.ibm.db2.wrapper.WrapperUtilities.
The WrapperUtilities class is a container for several static utility functions.

A B C D E F G I L M N O P Q R S T U V W
IBM DB2 Information Integrator
Java API Reference
for Developing Wrappers

(C)Copyright IBM Corp. 2002. All rights reserved.

Links on this page are made available for your convenience and may take you to non-IBM sites. IBM does not warrant any sample code provided on these sites.