NClob (Java SE 13 & JDK 13 )
- All Superinterfaces:
Clob
public interface NClob extends Clob
The mapping in the Java™ programming language
for the SQL NCLOB type.
An SQL NCLOB is a built-in type
that stores a Character Large Object using the National Character Set
as a column value in a row of a database table.
The NClob interface extends the Clob interface
which provides methods for getting the
length of an SQL NCLOB value,
for materializing a NCLOB value on the client, and for
searching for a substring or NCLOB object within a
NCLOB value. A NClob object, just like a Clob object, is valid for the duration
of the transaction in which it was created.
Methods in the interfaces ResultSet,
CallableStatement, and PreparedStatement, such as
getNClob and setNClob allow a programmer to
access an SQL NCLOB value. In addition, this interface
has methods for updating a NCLOB value.
All methods on the NClob interface must be fully implemented if the
JDBC driver supports the data type.
- Since:
- 1.6
-
Method Summary
Methods declared in interface java.sql.Clob
free, getAsciiStream, getCharacterStream, getCharacterStream, getSubString, length, position, position, setAsciiStream, setCharacterStream, setString, setString, truncate
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.