Create a new DSL insert statement. This type of insert may feel more convenient to some users, as it uses the UPDATE statement's SET a = b syntax. Example: DSLContext create = DSL.using(configuration); create.insertInto(table) .set(field1, value1)
(Table<R> into)
| 2225 | * </code></pre> |
| 2226 | */ |
| 2227 | @NotNull @CheckReturnValue |
| 2228 | @Support({ POSTGRES, SQLITE, YUGABYTEDB }) |
| 2229 | <R extends Record> InsertSetStep<R> insertInto(Table<R> into); |
| 2230 |
no outgoing calls
no test coverage detected