Package org.soulwing.jdbc
Interface BlobHandler
-
public interface BlobHandlerAn API user callback that prepares aBlobbefore a JDBC insert or update operation.- Author:
- Carl Harris
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprepareBlob(Blob blob)Prepares the givenBlobbefore it is included an in insert or update statement.
-
-
-
Method Detail
-
prepareBlob
void prepareBlob(Blob blob) throws SQLException
Prepares the givenBlobbefore 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
-
-