Interface ColumnMappingPostUpdate
-
- All Known Implementing Classes:
OracleBlobColumnMapping,OracleClobColumnMapping
public interface ColumnMappingPostUpdateInterface implemented by any ColumnMapping that requires a post-UPDATE step. For example, with Oracle CLOB/BLOB the UPDATE will just put "EMPTY_CLOB" or "EMPTY_BLOB" and this will SELECT the column and update it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdatePostProcessing(org.datanucleus.state.ObjectProvider op, Object value)Perform any UPDATE post processing on this column, using the provided value.
-
-
-
Method Detail
-
updatePostProcessing
void updatePostProcessing(org.datanucleus.state.ObjectProvider op, Object value)Perform any UPDATE post processing on this column, using the provided value.- Parameters:
op- ObjectProvider for object being updatedvalue- The value to use on the UPDATE
-
-