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, waitvaluespublic InsertResult execute()
Statementexecute in interface Statement<InsertStatement,InsertResult>public java.util.concurrent.CompletableFuture<InsertResult> executeAsync()
StatementexecuteAsync in interface Statement<InsertStatement,InsertResult>CompletableFuture for resultpublic InsertStatement values(java.util.List<java.lang.Object> row)
InsertStatementvalues in interface InsertStatementrow - list of values to insertInsertStatement