Package org.soulwing.jdbc
Interface ClobHandler
-
public interface ClobHandler
An API user callback that prepares aClob
before a JDBC insert or update operation.- Author:
- Carl Harris
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
prepareClob(Clob clob)
Prepares the givenClob
before it is included an in insert or update statement.
-
-
-
Method Detail
-
prepareClob
void prepareClob(Clob clob) throws SQLException
Prepares the givenClob
before 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
-
-