Package org.soulwing.jdbc
Interface NClobHandler
-
public interface NClobHandlerAn API user callback that prepares aNClobbefore a JDBC insert or update operation.- Author:
- Carl Harris
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprepareNClob(NClob nClob)Prepares the givenNClobbefore it is included an in insert or update statement.
-
-
-
Method Detail
-
prepareNClob
void prepareNClob(NClob nClob) throws SQLException
Prepares the givenNClobbefore 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
-
-