MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / insertInto

Method insertInto

jOOQ/src/main/java/org/jooq/impl/DSL.java:5252–5256  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

dslMethod · 0.95
insertIntoMethod · 0.65

Tested by

no test coverage detected