jdk/src/java.sql/share/classes/java/sql/DataTruncation.java
changeset 44256 12050b22e372
parent 25859 3317bb8137f4
equal deleted inserted replaced
44255:515cf13d7791 44256:12050b22e372
    32  *  when a data values is unexpectedly truncated for reasons other than its having
    32  *  when a data values is unexpectedly truncated for reasons other than its having
    33  *  exceeded <code>MaxFieldSize</code>.
    33  *  exceeded <code>MaxFieldSize</code>.
    34  *
    34  *
    35  * <P>The SQLstate for a <code>DataTruncation</code> during read is <code>01004</code>.
    35  * <P>The SQLstate for a <code>DataTruncation</code> during read is <code>01004</code>.
    36  * <P>The SQLstate for a <code>DataTruncation</code> during write is <code>22001</code>.
    36  * <P>The SQLstate for a <code>DataTruncation</code> during write is <code>22001</code>.
       
    37  *
       
    38  * @since 1.1
    37  */
    39  */
    38 
    40 
    39 public class DataTruncation extends SQLWarning {
    41 public class DataTruncation extends SQLWarning {
    40 
    42 
    41     /**
    43     /**