Skip to content

Commit

Permalink
[#10] Add a Policy example
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jan 11, 2024
1 parent e5a8211 commit 0ff641e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ public void dml() {
ctx.update(ACTOR)
.set(ACTOR.LAST_NAME, "X")
.where(ACTOR.ACTOR_ID.gt(200L))
.execute();

// More information here:
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/insert-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/update-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/delete-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/merge-statement/
.execute();

// More information here:
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/insert-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/update-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/delete-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/merge-statement/
}

@After
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ public void dml() {
ctx.update(ACTOR)
.set(ACTOR.LAST_NAME, "X")
.where(ACTOR.ACTOR_ID.gt(200L))
.execute();

// More information here:
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/insert-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/update-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/delete-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/merge-statement/
.execute();

// More information here:
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/insert-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/update-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/delete-statement/
// - https://www.jooq.org/doc/latest/manual/sql-building/sql-statements/merge-statement/
}

@After
Expand Down

0 comments on commit 0ff641e

Please sign in to comment.