Serialized Form
updateCounts
int[] updateCounts
- The array that describes the outcome of a batch execution.
-
- Since:
- 1.2
index
int index
-
parameter
boolean parameter
-
read
boolean read
-
dataSize
int dataSize
-
transferSize
int transferSize
-
SQLState
java.lang.String SQLState
-
vendorCode
int vendorCode
-
next
SQLException next
-
nanos
int nanos
-
ex
SQLException ex
- The
SQLException
that the driver will throw to the
application when an error occurs and the pooled connection is no
longer usable.
-
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitute the BigDecimal instance from a stream (that is,
deserialize it).
intVal
BigInteger intVal
- The unscaled value of this BigDecimal, as returned by unscaledValue().
-
- See Also:
BigDecimal.unscaledValue()
scale
int scale
- The scale of this BigDecimal, as returned by scale().
-
- See Also:
BigDecimal.scale()
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitute the BigInteger instance from a stream (that is,
deserialize it). The magnitude is read in as an array of bytes
for historical reasons, but it is converted to an array of ints
and the byte array is discarded.
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Save the BigInteger instance to a stream.
The magnitude of a BigInteger is serialized as a byte array for
historical reasons.
- Serial Data:
- two necessary fields are written as well as obsolete
fields for compatibility with older versions.
java.io.IOException
- Serializable fields for BigInteger.
bitCount
int bitCount
- number of bits in this BigInteger
bitLength
int bitLength
- the number of bits in the minimal two's-complement
representation of this BigInteger
lowestSetBit
int lowestSetBit
- lowest set bit in the twos complement representation
magnitude
int[] magnitude
- magnitude array of this BigInteger.
signum
int signum
- signum of this BigInteger.