BAEL-4520 Getting Started with jOOQ (#10101)

Co-authored-by: Krzysztof Majewski <krzysztof.majewski.km1@contractors.roche.com>
This commit is contained in:
Krzysztof Majewski 2020-09-29 05:30:32 +02:00 committed by GitHub
parent 664d170cf4
commit 42141b8889
2 changed files with 25 additions and 27 deletions

View File

@ -98,9 +98,7 @@ public class CrudExamples {
ArticleRecord article = context.fetchOne(Article.ARTICLE, Article.ARTICLE.ID.eq(1));
article.setTitle("A New Article Title");
update(
article
);
update(article);
}
private void deleteValues(DSLContext context) {