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