RDMClob(String str)
Syntax:
RDMClob(String str) throws SQLException
Description:
Creates a Clob
object that initially contains the supplied characters which is available to be supplied to the set
Clob
methods of the Statement
, PreparedStatement
, or CallableStatement
objects.
Throws:
SQLException - if an error occurs handling the bytes provided. Since Clobs
are potentially very large the implementation caches the data using a file so not all of it has to reside in memory. The SQLException
is thrown if there are I/O errors. dealing with the cache and its file.