Create a new DSL insert statement. Unlike Insert factory methods in the DSLContext API, this creates an unattached, and thus not directly renderable or executable INSERT statement. This type of insert may feel more convenient to some users, as it uses the U
(Table<R> into)
| 5250 | * @see DSLContext#insertInto(Table) |
| 5251 | */ |
| 5252 | @NotNull |
| 5253 | @Support |
| 5254 | public static <R extends Record> InsertSetStep<R> insertInto(Table<R> into) { |
| 5255 | return dsl().insertInto(into); |
| 5256 | } |
| 5257 | |
| 5258 | |
| 5259 |
nothing calls this directly
no test coverage detected