Uses of Interface
java.sql.Blob
Package
Description
Provides the API for accessing and processing data stored in a
data source (usually a relational database) using the
Java programming language.
Provides the API for server side data source access and processing from
the Java programming language.
Standard interfaces and base classes for JDBC
RowSet
implementations.Provides utility classes to allow serializable mappings between SQL types
and data types in the Java programming language.
-
Uses of Blob in java.sql
Modifier and TypeMethodDescriptionConnection.createBlob()
Constructs an object that implements theBlob
interface.CallableStatement.getBlob
(int parameterIndex) Retrieves the value of the designated JDBCBLOB
parameter as aBlob
object in the Java programming language.Retrieves the value of a JDBCBLOB
parameter as aBlob
object in the Java programming language.ResultSet.getBlob
(int columnIndex) Retrieves the value of the designated column in the current row of thisResultSet
object as aBlob
object in the Java programming language.Retrieves the value of the designated column in the current row of thisResultSet
object as aBlob
object in the Java programming language.SQLInput.readBlob()
Reads an SQLBLOB
value from the stream and returns it as aBlob
object in the Java programming language.Modifier and TypeMethodDescriptionlong
Retrieves the byte position in theBLOB
value designated by thisBlob
object at whichpattern
begins.void
Sets the designated parameter to the givenjava.sql.Blob
object.void
Sets the designated parameter to the givenjava.sql.Blob
object.void
ResultSet.updateBlob
(int columnIndex, Blob x) Updates the designated column with ajava.sql.Blob
value.void
ResultSet.updateBlob
(String columnLabel, Blob x) Updates the designated column with ajava.sql.Blob
value.void
Writes an SQLBLOB
value to the stream. -
Uses of Blob in javax.sql
-
Uses of Blob in javax.sql.rowset
-
Uses of Blob in javax.sql.rowset.serial
Modifier and TypeClassDescriptionclass
A serialized mapping in the Java programming language of an SQLBLOB
value.Modifier and TypeMethodDescriptionSQLInputImpl.readBlob()
Retrieves theBLOB
value at the head of thisSQLInputImpl
object as aBlob
object in the Java programming language.Modifier and TypeMethodDescriptionlong
Returns the position in thisSerialBlob
object where the givenBlob
object begins, starting the search at the specified position.void
Writes aBlob
object in the Java programming language to thisSQLOutputImpl
object.ModifierConstructorDescriptionSerialBlob
(Blob blob) Constructs aSerialBlob
object that is a serialized version of the givenBlob
object.