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