| Java™ Platform Standard Ed. 6 | ||||||||||
| java.sql | Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language. |
| javax.sql | Provides the API for server side data source access and processing fromthe Java programming language. |
| javax.sql.rowset | Standard interfaces and base classes for JDBCRowSetimplementations. |
| javax.sql.rowset.serial | Provides utility classes to allow serializable mappings between SQL typesand data types in the Java programming language. |
| Methods injava.sql that returnBlob | |
|---|---|
Connection.createBlob()Constructs an object that implements the Blob interface. | |
ResultSet.getBlob(int columnIndex)Retrieves the value of the designated column in the current row of this ResultSet object as aBlob object in the Java programming language. | |
CallableStatement.getBlob(int parameterIndex)Retrieves the value of the designated JDBC BLOB parameter as aBlob object in the Java programming language. | |
ResultSet.getBlob(String columnLabel)Retrieves the value of the designated column in the current row of this ResultSet object as aBlob object in the Java programming language. | |
CallableStatement.getBlob(String parameterName)Retrieves the value of a JDBC BLOB parameter as aBlob object in the Java programming language. | |
SQLInput.readBlob()Reads an SQL BLOB value from the stream and returns it as aBlob object in the Java programming language. | |
| Methods injava.sql with parameters of typeBlob | |
|---|---|
Blob.position(Blob pattern, long start)Retrieves the byte position in the BLOB value designated by thisBlob object at whichpattern begins. | |
PreparedStatement.setBlob(int parameterIndex,Blob x)Sets the designated parameter to the given java.sql.Blob object. | |
CallableStatement.setBlob(String parameterName,Blob x)Sets the designated parameter to the given java.sql.Blob object. | |
ResultSet.updateBlob(int columnIndex,Blob x)Updates the designated column with a java.sql.Blob value. | |
ResultSet.updateBlob(String columnLabel,Blob x)Updates the designated column with a java.sql.Blob value. | |
SQLOutput.writeBlob(Blob x)Writes an SQL BLOB value to the stream. | |
| Methods injavax.sql with parameters of typeBlob | |
|---|---|
RowSet.setBlob(int i,Blob x)Sets the designated parameter in this RowSet object's command with the givenBlob value. | |
RowSet.setBlob(String parameterName,Blob x)Sets the designated parameter to the given java.sql.Blob object. | |
| Methods injavax.sql.rowset with parameters of typeBlob | |
|---|---|
BaseRowSet.setBlob(int parameterIndex,Blob x)Sets the designated parameter to the given Blob object in the Java programming language. | |
BaseRowSet.setBlob(String parameterName,Blob x)Sets the designated parameter to the given java.sql.Blob object. | |
| Classes injavax.sql.rowset.serial that implementBlob | |
|---|---|
SerialBlobA serialized mapping in the Java programming language of an SQL BLOB value. | |
| Methods injavax.sql.rowset.serial that returnBlob | |
|---|---|
SQLInputImpl.readBlob()Retrieves the BLOB value at the head of thisSQLInputImpl object as aBlob object in the Java programming language. | |
| Methods injavax.sql.rowset.serial with parameters of typeBlob | |
|---|---|
SerialBlob.position(Blob pattern, long start)Returns the position in this SerialBlob object where the givenBlob object begins, starting the search at the specified position. | |
SQLOutputImpl.writeBlob(Blob x)Writes a Blob object in the Java programming language to thisSQLOutputImpl object. | |
| Constructors injavax.sql.rowset.serial with parameters of typeBlob | |
|---|---|
SerialBlob(Blob blob)Constructs a SerialBlob object that is a serialized version of the givenBlob object. | |
| Java™ Platform Standard Ed. 6 | ||||||||||