public interface SQLColumnTypeConversion
An instance of the class implementating this interface exists typically per statement that the callback has been registered for by means of EPL statement annotation.
Modifier and Type | Method and Description |
---|---|
Class |
getColumnType(SQLColumnTypeContext context)
Return the new type of the column.
|
Object |
getColumnValue(SQLColumnValueContext context)
Return the new value of the column.
|
Object |
getParameterValue(SQLInputParameterContext context)
Return the new value of the input parameter.
|
Class getColumnType(SQLColumnTypeContext context)
SQLColumnTypeContext.getColumnClassType()
or null.context
- contains the database name, query fired, column name, column type and column numberObject getColumnValue(SQLColumnValueContext context)
SQLColumnValueContext.getColumnValue()
.context
- contains the column name, column value and column numberObject getParameterValue(SQLInputParameterContext context)
SQLInputParameterContext.getParameterValue()
.context
- contains the parameter name and number