Package org.jdbi.v3.core.statement
Class ParsedSql.Builder
java.lang.Object
org.jdbi.v3.core.statement.ParsedSql.Builder
- Enclosing class:
- ParsedSql
Fluent builder for ParsedSql instances.
- 
Method SummaryModifier and TypeMethodDescriptionAppends the given SQL fragment to the SQL string.appendNamedParameter(String name) Records a named parameter with the given name, and appends a?to the SQL string.Records a positional parameters, and appends a?to the SQL string.build()Returns the finalizedParsedSqlobject.
- 
Method Details- 
appendAppends the given SQL fragment to the SQL string.- Parameters:
- sqlFragment- the SQL fragment
- Returns:
- this
 
- 
appendPositionalParameterRecords a positional parameters, and appends a?to the SQL string.- Returns:
- this
 
- 
appendNamedParameterRecords a named parameter with the given name, and appends a?to the SQL string.- Parameters:
- name- the parameter name.
- Returns:
- this
 
- 
buildReturns the finalizedParsedSqlobject.- Returns:
- the finalized ParsedSqlobject.
 
 
-