public static interface InsertBuilder.InsertIntoColumnsAndValuesWithBuild extends InsertBuilder.InsertIntoColumnsAndValues, InsertBuilder.InsertValues, InsertBuilder.BuildInsert
value
methods to add values to the INSERT
statement and the build method.Modifier and Type | Method and Description |
---|---|
InsertBuilder.InsertValuesWithBuild |
value(Expression value)
Add a
value to the VALUES list. |
InsertBuilder.InsertValuesWithBuild |
values(Collection<? extends Expression> values)
Add one or more
values to the VALUES list. |
InsertBuilder.InsertValuesWithBuild |
values(Expression... values)
Add one or more
values to the VALUES list. |
column, columns, columns
build
InsertBuilder.InsertValuesWithBuild value(Expression value)
value
in interface InsertBuilder.InsertValues
value
- the value to use.this
builder.Column
InsertBuilder.InsertValuesWithBuild values(Expression... values)
values
to the VALUES
list. Calling this method multiple times will add
a values
multiple times.values
in interface InsertBuilder.InsertValues
values
- the values.this
builder.Column
InsertBuilder.InsertValuesWithBuild values(Collection<? extends Expression> values)
values
to the VALUES
list. Calling this method multiple times will add
a values
multiple times.values
in interface InsertBuilder.InsertValues
values
- the values.this
builder.Column
Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.