Module io.helidon.dbclient
Package io.helidon.dbclient
Interface DbStatement<D extends DbStatement<D,R>,R>
- Type Parameters:
R
- Type of the result of this statement (e.g. aCompletionStage
)D
- Type of the descendant of this class
- All Known Subinterfaces:
DbStatementDml
,DbStatementGet
,DbStatementQuery
- All Known Implementing Classes:
AbstractStatement
,MongoDbStatementDml
,MongoDbStatementGet
public interface DbStatement<D extends DbStatement<D,R>,R>
Database statement that can process parameters.
Method
execute()
processes the statement and returns appropriate response.
All methods are non-blocking. The execute()
method returns either a CompletionStage
or another object that provides similar API for eventual processing of the response.
Once parameters are set using one of the params
methods, all other methods throw an
IllegalStateException
.
Once a parameter is added using addParam(Object)
or addParam(String, Object)
, all other
params
methods throw an IllegalStateException
.
Once execute()
is called, all methods would throw an IllegalStateException
.
-
Method Summary
Modifier and TypeMethodDescriptionAdd next parameter to the list of ordered parameters (e.g.Add next parameter to the map of named parameters (e.g.execute()
Execute this statement using the parameters configured withparams
andaddParams
methods.indexedParam
(Object parameters) Configure parameters usingObject
instance with registered mapper.namedParam
(Object parameters) Configure parameters usingObject
instance with registered mapper.default D
Configure parameters from an array by order.Configure parameters from aList
by order.Configure named parameters.
-
Method Details
-
params
Configure parameters from aList
by order. The statement must use indexed parameters and configure them by order in the provided array.- Parameters:
parameters
- ordered parameters to set on this statement, never null- Returns:
- updated db statement
-
params
Configure parameters from an array by order. The statement must use indexed parameters and configure them by order in the provided array.- Parameters:
parameters
- ordered parameters to set on this statement- Returns:
- updated db statement
-
params
Configure named parameters. The statement must use named parameters and configure them from the provided map.- Parameters:
parameters
- named parameters to set on this statement- Returns:
- updated db statement
-
namedParam
Configure parameters usingObject
instance with registered mapper. The statement must use named parameters and configure them from the map provided by mapper.- Parameters:
parameters
-Object
instance containing parameters- Returns:
- updated db statement
-
indexedParam
Configure parameters usingObject
instance with registered mapper. The statement must use indexed parameters and configure them by order in the array provided by mapper.- Parameters:
parameters
-Object
instance containing parameters- Returns:
- updated db statement
-
addParam
Add next parameter to the list of ordered parameters (e.g. the ones that use?
in SQL).- Parameters:
parameter
- next parameter to set on this statement- Returns:
- updated db statement
-
addParam
Add next parameter to the map of named parameters (e.g. the ones that use:name
in Helidon JDBC SQL integration).- Parameters:
name
- name of parameterparameter
- value of parameter- Returns:
- updated db statement
-
execute
R execute()Execute this statement using the parameters configured withparams
andaddParams
methods.- Returns:
- The result of this statement, never blocking.
-