|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DLIException | |
com.ibm.ims.base | Provides classes for the mapping to IMS DL/I APIs. |
com.ibm.ims.db | Provides classes for the JDBC driver and for the IMS Java hierarchic database interface. |
com.ibm.ims.xms | Provides classes for XML DB support (The classes in this package are for internal use only). |
Uses of DLIException in com.ibm.ims.base |
Methods in com.ibm.ims.base that throw DLIException | |
java.math.BigDecimal |
DLIBaseSegment.getBigDecimal(int index)
Returns the field indicated by the index as a BigDecimal. |
java.math.BigDecimal |
DLIBaseSegment.getBigDecimal(int index,
int scale)
Returns the field indicated by the index as a BigDecimal. |
java.math.BigDecimal |
DLIBaseSegment.getBigDecimal(java.lang.String fieldName)
Returns the field specified by the parameter as a BigDecimal. |
java.math.BigDecimal |
DLIBaseSegment.getBigDecimal(java.lang.String fieldName,
int scale)
Returns the field specified by the parameter as a BigDecimal. |
boolean |
DLIBaseSegment.getBoolean(int index)
Returns the field indicated by the index as a boolean. |
boolean |
DLIBaseSegment.getBoolean(java.lang.String fieldName)
Returns the field specified by the parameter as a boolean. |
byte |
DLIBaseSegment.getByte(int index)
Returns the field indicated by the index as a byte. |
byte |
DLIBaseSegment.getByte(java.lang.String fieldName)
Returns the field specified by the parameter as a byte. |
byte[] |
DLIBaseSegment.getBytes(int index)
Returns the field indicated by the index "as is" (ie; the raw bytes of the field). |
byte[] |
DLIBaseSegment.getBytes(java.lang.String fieldName)
Returns the field specified by the parameter "as is" (ie; the raw bytes of the field). |
java.sql.Date |
DLIBaseSegment.getDate(int index)
Returns the field indicated by the index as a java.sql.Date object. |
java.sql.Date |
DLIBaseSegment.getDate(java.lang.String fieldName)
Returns the field specified by the parameter as a java.sql.Date object. |
double |
DLIBaseSegment.getDouble(int index)
Returns the field indicated by the index as a double. |
double |
DLIBaseSegment.getDouble(java.lang.String fieldName)
Returns the field specified by the parameter as a double. |
float |
DLIBaseSegment.getFloat(int index)
Returns the field indicated by the index as a float. |
float |
DLIBaseSegment.getFloat(java.lang.String fieldName)
Returns the field specified by the parameter as a float. |
int |
DLIBaseSegment.getInt(int index)
Returns the field indicated by the index as an int. |
int |
DLIBaseSegment.getInt(java.lang.String fieldName)
Returns the field specified by the parameter as an int. |
long |
DLIBaseSegment.getLong(int index)
Returns the field indicated by the index as a long. |
long |
DLIBaseSegment.getLong(java.lang.String fieldName)
Returns the field specified by the parameter as a long. |
short |
DLIBaseSegment.getShort(int index)
Returns the field indicated by the index as a short. |
short |
DLIBaseSegment.getShort(java.lang.String fieldName)
Returns the field specified by the parameter as a short. |
java.lang.String |
DLIBaseSegment.getString(int index)
Returns the field indicated by the index as a String. |
java.lang.String |
DLIBaseSegment.getString(java.lang.String fieldName)
Returns the field specified by the parameter as a String. |
java.sql.Time |
DLIBaseSegment.getTime(int index)
Returns the field indicated by the index as a java.sql.Time object. |
java.sql.Time |
DLIBaseSegment.getTime(java.lang.String fieldName)
Returns the field specified by the parameter as a java.sql.Time object. |
java.sql.Timestamp |
DLIBaseSegment.getTimestamp(int index)
Returns the field indicated by the index as a java.sql.Timestamp object. |
java.sql.Timestamp |
DLIBaseSegment.getTimestamp(java.lang.String fieldName)
Returns the field specified by the parameter as a java.sql.Timestamp object. |
DLITypeInfo |
DLIBaseSegment.getTypeInfo(java.lang.String fieldName)
Returns the DLITypeInfo of the field specified by the fieldName parameter. |
void |
DLIBaseSegment.setBigDecimal(int index,
java.math.BigDecimal value)
Sets the field indicated by the index to the specified BigDecimal value. |
void |
DLIBaseSegment.setBigDecimal(java.lang.String fieldName,
java.math.BigDecimal value)
Sets the field indicated by the fieldName parameter to the specified BigDecimal value. |
void |
DLIBaseSegment.setBoolean(int index,
boolean value)
Sets the field indicated by the index to the specified boolean value. |
void |
DLIBaseSegment.setBoolean(java.lang.String fieldName,
boolean value)
Sets the field indicated by the fieldName parameter to the specified boolean value. |
void |
DLIBaseSegment.setByte(int index,
byte value)
Sets the field indicated by the index to the specified byte value. |
void |
DLIBaseSegment.setByte(java.lang.String fieldName,
byte value)
Sets the field indicated by the fieldName parameter to the specified byte value. |
void |
DLIBaseSegment.setBytes(int index,
byte[] value)
Sets the field indicated by the index to the exact bytes passed in the array, with no conversion. |
void |
DLIBaseSegment.setBytes(java.lang.String fieldName,
byte[] value)
Sets the field indicated by the fieldName parameter to the exact bytes passed in the array, with no conversion. |
void |
DLIBaseSegment.setDate(int index,
java.sql.Date value)
Sets the field indicated by the index to the specified Date value. |
void |
DLIBaseSegment.setDate(java.lang.String fieldName,
java.sql.Date value)
Sets the field indicated by the fieldName parameter to the specified Date value. |
void |
DLIBaseSegment.setDouble(int index,
double value)
Sets the field indicated by the index to the specified double value. |
void |
DLIBaseSegment.setDouble(java.lang.String fieldName,
double value)
Sets the field indicated by the fieldName parameter to the specified double value. |
void |
DLIBaseSegment.setFloat(int index,
float value)
Sets the field indicated by the index to the specified float value. |
void |
DLIBaseSegment.setFloat(java.lang.String fieldName,
float value)
Sets the field indicated by the index to the specified float value. |
void |
DLIBaseSegment.setInt(int index,
int value)
Sets the field indicated by the index to the specified int value. |
void |
DLIBaseSegment.setInt(java.lang.String fieldName,
int value)
Sets the field indicated by the fieldName parameter to the specified int value. |
void |
DLIBaseSegment.setLong(int index,
long value)
Sets the field indicated by the index to the specified long value. |
void |
DLIBaseSegment.setLong(java.lang.String fieldName,
long value)
Sets the field indicated by the fieldName parameter to the specified long value. |
void |
DLIBaseSegment.setShort(int index,
short value)
Sets the field indicated by the index to the specified short value. |
void |
DLIBaseSegment.setShort(java.lang.String fieldName,
short value)
Sets the field indicated by the fieldName parameter to the specified short value. |
void |
DLIBaseSegment.setString(int index,
java.lang.String value)
Sets the field indicated by the index to the specified String value. |
void |
DLIBaseSegment.setString(java.lang.String fieldName,
java.lang.String value)
Sets the field indicated by the fieldName parameter to the specified String value. |
void |
DLIBaseSegment.setTime(int index,
java.sql.Time value)
Sets the field indicated by the index to the specified Time value. |
void |
DLIBaseSegment.setTime(java.lang.String fieldName,
java.sql.Time value)
Sets the field indicated by the fieldName parameter to the specified Time value. |
void |
DLIBaseSegment.setTimestamp(int index,
java.sql.Timestamp value)
Sets the field indicated by the index to the specified Timestamp value. |
void |
DLIBaseSegment.setTimestamp(java.lang.String fieldName,
java.sql.Timestamp value)
Sets the field indicated by the fieldName parameter to the specified Timestamp value. |
Uses of DLIException in com.ibm.ims.db |
Methods in com.ibm.ims.db that throw DLIException | |
DLISegment |
DLIDatabaseView.getParent(java.lang.String dbPCBNameReference,
DLISegment segment)
Returns the parent DLISegment object of the specified segment. |
DLISegment |
DLIDatabaseView.getParent(java.lang.String dbPCBNameReference,
java.lang.String segmentNameReference)
Returns the parent DLISegment object of the specified segment
class name. |
java.util.Vector |
DLIDatabaseView.getChildren(java.lang.String dbPCBNameReference,
java.lang.String parentNameReference)
Returns the parent DLISegment object of the specified segment
class name. |
java.lang.String |
DLIDatabaseView.getActualPCBName(java.lang.String dbPCBNameReference)
This method resolves a PCB alias to the 8 character IMS PCB name. |
DLISegment |
DLIDatabaseView.cloneSegment(java.lang.String dbPCBNameReference,
java.lang.String segmentName)
This method will return a copy of any segment stored in the database view. |
boolean |
DLIClobSegmentStream.fillTopSegment(DLISegment topSegment)
|
DLISegment |
DLIClobSegmentStream.getSegment()
|
void |
SSA.addQualificationStatement(byte ssaBooleanOperator,
java.lang.String fieldName,
short ssaRelationalOperator,
java.lang.String comparisonValue)
Adds a qualification statement to an SSA. |
void |
SSA.addQualificationStatement(SSAQualificationStatement ssaQualificationStatement)
Adds a qualification statement specified by the ssaQualificationStatement argument to an SSA. |
void |
SSA.addQualificationStatement(java.lang.String fieldName,
short ssaRelationalOperator,
java.lang.String comparisonValue)
Adds a qualification statement to an SSA. |
byte[] |
SSA.getBytes(DLIDatabaseView dbView)
Deprecated. Replaced by getBytes(String, DLIDatabaseView) |
byte[] |
SSA.getBytes(java.lang.String dbPCBNameReference,
DLIDatabaseView dbView)
Returns the SSA in EBCDIC exactly as IMS needs it to be. |
byte[] |
DLISegment.getSegmentKey()
Returns the key of the current Segment. |
boolean |
DLISegmentStream.fillTopSegment(DLISegment topSegment)
|
DLISegment |
DLISegmentStream.getSegment()
|
Uses of DLIException in com.ibm.ims.xms |
Methods in com.ibm.ims.xms that throw DLIException | |
boolean |
XMSShredder.fillTopSegment(DLISegment topSegment)
Begins XML parse filling the topSegment. |
DLISegment |
XMSShredder.getSegment()
Returns the next DLISegment produced by the XML Parse. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |