Uses of Class
oracle.sql.BLOB
-
Packages that use BLOB Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc.oracle.sql A package of classes that represent java SQL types and Oracle specific SQL types. -
- <section role="region">
Uses of BLOB in oracle.jdbc
Methods in oracle.jdbc that return BLOB Modifier and Type Method Description BLOBOracleCallableStatement. getBLOB(int parameterIndex)Retrieves data into anoracle.sql.BLOBobject.BLOBOracleResultSet. getBLOB(int columnIndex)Oracle extension.BLOBOracleResultSet. getBLOB(String columnName)Oracle extension.
</section>Methods in oracle.jdbc with parameters of type BLOB Modifier and Type Method Description voidOracleCallableStatement. setBLOB(String parameterName, BLOB x)Sets the designated parameter to anoracle.sql.BLOBvalue.voidOraclePreparedStatement. setBLOB(int parameterIndex, BLOB lob)Binds the designated parameter to aoracle.sql.BLOBvalue.voidOraclePreparedStatement. setBLOBAtName(String parameterName, BLOB value)Sets the designated parameter to an oracle.sql.BLOB value.voidOracleResultSet. updateBLOB(int columnIndex, BLOB value)Oracle extension.voidOracleResultSet. updateBLOB(String columnName, BLOB value)Oracle extension. - <section role="region">
Uses of BLOB in oracle.sql
Methods in oracle.sql that return BLOB Modifier and Type Method Description static BLOBBLOB. createTemporary(Connection conn, boolean cache, int _duration)Deprecated.Create a temporary blob.static BLOBBLOB. empty_lob()Deprecated.use getEmptyBLOB insteadstatic BLOBBLOB. getEmptyBLOB()Deprecated.Return a empty lob.
</section>Methods in oracle.sql with parameters of type BLOB Modifier and Type Method Description static voidBLOB. freeTemporary(BLOB temp_lob)Deprecated.Free the contents and the locator of the temporary blob.static shortBLOB. getDuration(BLOB lob)Deprecated.return the duration of a temporary LOBstatic booleanBLOB. isTemporary(BLOB lob)Deprecated.Return true if the lob locator points to a temporary blob.
- <section role="region">