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

Method insertInto

jOOQ/src/main/java/org/jooq/WithStep.java:2227–2227  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

2225 * </code></pre>
2226 */
2227 @NotNull @CheckReturnValue
2228 @Support({ POSTGRES, SQLITE, YUGABYTEDB })
2229 <R extends Record> InsertSetStep<R> insertInto(Table<R> into);
2230

Callers 7

formatInsertMethod · 0.65
insertIntoMethod · 0.65
acceptInsertSelectMethod · 0.65
parseInsertMethod · 0.65

Implementers 3

WithImpljOOQ/src/main/java/org/jooq/impl/WithI
DefaultDSLContextjOOQ/src/main/java/org/jooq/impl/Defau
DSLjOOQ/src/main/java/org/jooq/impl/DSL.j

Calls

no outgoing calls

Tested by

no test coverage detected