DataTruncation (Java SE 10 & JDK 10 )
-
-
Constructor Summary
Constructors Constructor Description DataTruncation(int index, boolean parameter, boolean read, int dataSize, int transferSize)Creates a
DataTruncationobject with the SQLState initialized to 01004 whenreadis set totrueand 22001 whenreadis set tofalse, the reason set to "Data truncation", the vendor code set to 0, and the other fields set to the given values.DataTruncation(int index, boolean parameter, boolean read, int dataSize, int transferSize, Throwable cause)Creates a
DataTruncationobject with the SQLState initialized to 01004 whenreadis set totrueand 22001 whenreadis set tofalse, the reason set to "Data truncation", the vendor code set to 0, and the other fields set to the given values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDataSize()Gets the number of bytes of data that should have been transferred.
intgetIndex()Retrieves the index of the column or parameter that was truncated.
booleangetParameter()Indicates whether the value truncated was a parameter value or a column value.
booleangetRead()Indicates whether or not the value was truncated on a read.
intgetTransferSize()Gets the number of bytes of data actually transferred.
-
Methods declared in interface java.lang.Iterable
forEach, spliterator
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods declared in class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods declared in class java.sql.SQLWarning
getNextWarning, setNextWarning
-
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-