-79821 Name unnecessary for this data type
Explanation
If you have a data type that requires a name (an
opaque type or complex type) you must call a method that has a parameter
for the name, such as the following methods:
public void IfxSetNull(int i, int ifxType,
String name)
public void registerOutParameter
(int parameterIndex,
int sqlType, java.lang.String name);
public void IfxRegisterOutParameter
(int parameterIndex,
int ifxType, java.lang.String name);
The data type you have specified does not require a name.
User response
Use another method that does not have a type parameter.