Package org.apache.derby.impl.drda
Class DRDAProtocolExceptionInfo
- java.lang.Object
-
- org.apache.derby.impl.drda.DRDAProtocolExceptionInfo
-
class DRDAProtocolExceptionInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected int
errCdCodePoint
The CodePoint describing the error condition for the errorCodePoint.protected int
errorCodePoint
errorCodePoint specifies the code point of the error reply message, (e.g.protected boolean
sendsCodpntArg
protected int
svrcod
-
Constructor Summary
Constructors Constructor Description DRDAProtocolExceptionInfo(int errorCodePoint, int svrcod, int errCdCodePoint, boolean sendsCodpntArg)
-
-
-
Field Detail
-
errorCodePoint
protected int errorCodePoint
errorCodePoint specifies the code point of the error reply message, (e.g. CodePoint.SYNTAXRM) whereas errCdCodePoint specifies the code point of an extra required field in that reply message. Most error reply messages have one or two required fields that are quite common, like SVRCOD (severity code) or RDBNAM (database name). Some error reply messages additionally have required fields that are specific to them. errCdCodePoint is used to specify these. For instance, SYNTAXRM has a required field called SYNERRCD, and PRCCNVRM has a required field called PRCCNVCD.
-
svrcod
protected int svrcod
-
errCdCodePoint
protected int errCdCodePoint
The CodePoint describing the error condition for the errorCodePoint. (e.g. CodePoint.SYNERRCD, when errorCodePoint is CodePoint.SYNTAXRM)
-
sendsCodpntArg
protected boolean sendsCodpntArg
-
-