Package org.springframework.r2dbc.core
Interface PreparedOperation<T>
- Type Parameters:
- T- underlying operation source
- All Superinterfaces:
- QueryOperation,- Supplier<String>
Extension to 
QueryOperation for a prepared SQL query
 Supplier with bound parameters. Contains parameter
 bindings that can be bound to a BindTarget.
 Can be executed with DatabaseClient.
- Since:
- 5.3
- Author:
- Mark Paluch
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidbindTo(BindTarget target) Apply bindings to the suppliedBindTarget.Get the underlying query source.Methods inherited from interface org.springframework.r2dbc.core.QueryOperationget, toQuery
- 
Method Details- 
getSourceT getSource()Get the underlying query source.- Returns:
- the query source, such as a statement/criteria object
 
- 
bindToApply bindings to the suppliedBindTarget.- Parameters:
- target- the target to apply bindings to
 
 
-