Package | Description |
---|---|
org.springframework.r2dbc.core.binding |
Classes providing an abstraction over SQL bind markers.
|
Modifier and Type | Method and Description |
---|---|
BindMarker |
MutableBindings.bind(Object value)
Bind a value and return the related
BindMarker . |
BindMarker |
MutableBindings.bindNull(Class<?> valueType)
Bind a
NULL value and return the related BindMarker . |
BindMarker |
Bindings.Binding.getBindMarker()
Return the associated
BindMarker . |
BindMarker |
BindMarkers.next()
Create a new
BindMarker . |
default BindMarker |
BindMarkers.next(String hint)
Create a new
BindMarker that accepts a hint . |
BindMarker |
MutableBindings.nextMarker()
Obtain the next
BindMarker . |
BindMarker |
MutableBindings.nextMarker(String hint)
Obtain the next
BindMarker with a name hint . |
Modifier and Type | Method and Description |
---|---|
protected Map<BindMarker,Bindings.Binding> |
Bindings.getBindings() |
Modifier and Type | Method and Description |
---|---|
MutableBindings |
MutableBindings.bind(BindMarker marker,
Object value)
Bind a value to
BindMarker . |
MutableBindings |
MutableBindings.bindNull(BindMarker marker,
Class<?> valueType)
Bind a
NULL value to BindMarker . |
Constructor and Description |
---|
Binding(BindMarker marker) |