| com.completex.objective.components.persistency.Call
All known Subclasses: com.completex.objective.components.persistency.core.impl.query.CallImpl,
addInOutParameter | Call addInOutParameter(ColumnType type, Object value)(Code) | | Adds call INOUT parameter of ColumnType type
Parameters: type - Parameters: value - itself |
addInParameter | Call addInParameter(ColumnType type, Object value)(Code) | | Adds call IN parameter of ColumnType type
Parameters: type - Parameters: value - itself |
addOutParameter | Call addOutParameter(ColumnType type, Object value)(Code) | | Adds call OUT parameter of ColumnType type
Parameters: type - Parameters: value - itself |
addParameter | Call addParameter(ColumnType type, Object parameter, CallParameter.Mode mode)(Code) | | Adds call parameter of ColumnType type
Parameters: type - Parameters: parameter - Parameters: mode - one of CallParameter.Mode types (in, out, inout) itself |
addParameter | Call addParameter(CallParameter parameter)(Code) | | Add call parameter of type that will be determined by Persistency
Parameters: parameter - itself |
addRefCursorParameter | Call addRefCursorParameter()(Code) | | Adds Ref Cursor parameter of ColumnType type
itself |
clone | Object clone()(Code) | | Returns deep copy of this call
deep copy of this call |
compile | Call compile(DatabasePolicy databasePolicy)(Code) | | Compiled call which makes it immutable
Parameters: databasePolicy - compiled call (itself) |
getCallBody | String getCallBody()(Code) | | Returns call body which is internal part of call SQL:
"sp( ?, ? )", for instance.
call body body which is internal part of call SQL:"sp( ?, ? )", for instance. |
getParameters | CallParameters getParameters()(Code) | | Returns CallParameters set for this call
Parameters CallParameters set for this call |
isCompiled | boolean isCompiled()(Code) | | Returns true if query is copiled
true if query is copiled |
isFunction | boolean isFunction()(Code) | | Returns true if this call represents database function
true if this call represents database function |
setCallBody | void setCallBody(String callBody)(Code) | | Sets call body which is internal part of call SQL:
"sp( ?, ? )", for instance.
Parameters: callBody - internal part of call SQL:"sp( ?, ? )", for instance. |
setFunction | void setFunction(boolean function)(Code) | | Sets the flag to indicate if this call represents database function
Parameters: function - indicates if this call represents database function |
|
|