Show TOC Start of Content Area

Object documentation java.sql.Clob  Locate the document in its SAP Library structure

Definition

JDBC representation of character large object data types (CLOB).

 

Integration

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

 

 

Note

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

 

End of Content Area