Package org.soulwing.jdbc
Interface BlobHandler
-
public interface BlobHandler
An API user callback that prepares aBlob
before a JDBC insert or update operation.- Author:
- Carl Harris
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
prepareBlob(Blob blob)
Prepares the givenBlob
before it is included an in insert or update statement.
-
-
-
Method Detail
-
prepareBlob
void prepareBlob(Blob blob) throws SQLException
Prepares the givenBlob
before it is included an in insert or update statement.An implementation will typically provide the content for the large object.
- Parameters:
blob
- the large object to prepare- Throws:
SQLException
- as needed
-
-