public interface OngoingValues
Modifier and Type | Method and Description |
---|---|
RegularInsert |
value(CqlIdentifier columnId,
Term value)
Sets a value for a column, as in {@code INSERT INTO ...
|
default RegularInsert |
value(String columnName,
Term value)
Shortcut for
value(CqlIdentifier.fromCql(columnName),
value) . |
@NonNull RegularInsert value(@NonNull CqlIdentifier columnId, @NonNull Term value)
INSERT INTO ... (c) VALUES (?)
.
If this is called twice for the same column, the previous entry is discarded and the new entry will remain at its current position.
@NonNull default RegularInsert value(@NonNull String columnName, @NonNull Term value)
value(CqlIdentifier.fromCql(columnName),
value)
.Copyright © 2017–2019. All rights reserved.