public class InsertStatementImpl extends java.lang.Object implements InsertStatement
Statement.LockContention
Modifier and Type | Method and Description |
---|---|
InsertResult |
execute()
Execute the statement synchronously.
|
java.util.concurrent.CompletableFuture<InsertResult> |
executeAsync()
Execute the statement asynchronously.
|
InsertStatement |
values(java.util.List<java.lang.Object> row)
Add a row (sequence of values) to this statement.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
values
public InsertResult execute()
Statement
execute
in interface Statement<InsertStatement,InsertResult>
public java.util.concurrent.CompletableFuture<InsertResult> executeAsync()
Statement
executeAsync
in interface Statement<InsertStatement,InsertResult>
CompletableFuture
for resultpublic InsertStatement values(java.util.List<java.lang.Object> row)
InsertStatement
values
in interface InsertStatement
row
- list of values to insertInsertStatement