jdk/src/java.sql/share/classes/java/sql/NClob.java
changeset 25991 e48157b42439
parent 25976 4de01a56e3ee
parent 25859 3317bb8137f4
equal deleted inserted replaced
25876:d06a6d3c66c0 25991:e48157b42439
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package java.sql;
    26 package java.sql;
    27 
    27 
    28 import java.sql.Clob;
       
    29 
       
    30 /**
    28 /**
    31  * The mapping in the Java™ programming language
    29  * The mapping in the Java™ programming language
    32  * for the SQL <code>NCLOB</code> type.
    30  * for the SQL <code>NCLOB</code> type.
    33  * An SQL <code>NCLOB</code> is a built-in type
    31  * An SQL <code>NCLOB</code> is a built-in type
    34  * that stores a Character Large Object using the National Character Set
    32  * that stores a Character Large Object using the National Character Set
    35  *  as a column value in a row of  a database table.
    33  *  as a column value in a row of  a database table.
    36  * <P>The <code>NClob</code> interface extends the <code>Clob</code> interface
    34  * <P>The <code>NClob</code> interface extends the <code>Clob</code> interface
    37  * which provides provides methods for getting the
    35  * which provides methods for getting the
    38  * length of an SQL <code>NCLOB</code> value,
    36  * length of an SQL <code>NCLOB</code> value,
    39  * for materializing a <code>NCLOB</code> value on the client, and for
    37  * for materializing a <code>NCLOB</code> value on the client, and for
    40  * searching for a substring or <code>NCLOB</code> object within a
    38  * searching for a substring or <code>NCLOB</code> object within a
    41  * <code>NCLOB</code> value. A <code>NClob</code> object, just like a <code>Clob</code> object, is valid for the duration
    39  * <code>NCLOB</code> value. A <code>NClob</code> object, just like a <code>Clob</code> object, is valid for the duration
    42  * of the transaction in which it was created.
    40  * of the transaction in which it was created.