Show TOC Start of Content Area

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

Definition

JDBC representation of byte large object data types (BLOB).

 

Integration

Methods of Interface java.sql.Blob

Method Name

Support in Open SQL

Comments

InputStream getBinaryStream()

a

 

byte[] getBytes( long, int )

a

 

long length()

a

 

long position( Blob, long )

r

 

long position( byte[], long )

r

 

Note

To set the content of a BLOB, you can use the relevant methods of the java.sql.PreparedStatement interface.

 

End of Content Area