!--a11y-->
java.sql.Clob 
JDBC representation of character large object data types (CLOB).
Methods of java.sql.Clob Interface
Method Name |
Support in Open SQL |
Comments |
InputStream getAsciiStream() |
r |
|
Reader getCharacterStream() |
a |
|
String getSubString(long, int) |
r |
|
long length() |
a |
|
long position(Clob, long) |
r |
|
long position(String, long) |
r |
|

You can set the contents of a CLOB using the relevant methods from the java.sql.PreparedStatement interface.
