| Modifier and Type | Method and Description |
|---|---|
ParsedSql.Builder |
append(String sqlFragment)
Appends the given SQL fragment to the SQL string.
|
ParsedSql.Builder |
appendNamedParameter(String name)
Records a named parameter with the given name, and appends a
? to the SQL string. |
ParsedSql.Builder |
appendPositionalParameter()
Records a positional parameters, and appends a
? to the
SQL string. |
ParsedSql |
build() |
public ParsedSql.Builder append(String sqlFragment)
sqlFragment - the SQL fragmentpublic ParsedSql.Builder appendNamedParameter(String name)
? to the SQL string.name - the parameter name.public ParsedSql.Builder appendPositionalParameter()
? to the
SQL string.Copyright © 2017. All rights reserved.