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

Method commit

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

The COMMIT statement. Commit a transaction Unlike statement construction methods in the DSLContext API, this creates an unattached, and thus not directly renderable or executable statement. It can be used as a subquery or nested in procedural logic. @see DSLContext#comm

()

Source from the content-addressed store, hash-verified

12613 * @see DSLContext#commit()
12614 */
12615 @NotNull @CheckReturnValue
12616 @Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE, YUGABYTEDB })
12617 public static org.jooq.RowCountQuery commit() {
12618 return dsl().commit();
12619 }
12620
12621 /**
12622 * The <code>ROLLBACK</code> statement.

Callers

nothing calls this directly

Calls 2

dslMethod · 0.95
commitMethod · 0.65

Tested by

no test coverage detected