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
()
| 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. |