Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
jOOQ Masterclass

You're reading from   jOOQ Masterclass A practical guide for Java developers to write SQL queries for complex database interactions

Arrow left icon
Product type Paperback
Published in Aug 2022
Publisher Packt
ISBN-13 9781800566897
Length 764 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Anghel Leonard Anghel Leonard
Author Profile Icon Anghel Leonard
Anghel Leonard
Arrow right icon
View More author details
Toc

Table of Contents (26) Chapters Close

Preface 1. Part 1: jOOQ as a Query Builder, SQL Executor, and Code Generator
2. Chapter 1: Starting jOOQ and Spring Boot FREE CHAPTER 3. Chapter 2: Customizing the jOOQ Level of Involvement 4. Part 2: jOOQ and Queries
5. Chapter 3: jOOQ Core Concepts 6. Chapter 4: Building a DAO Layer (Evolving the Generated DAO Layer) 7. Chapter 5: Tackling Different Kinds of SELECT, INSERT, UPDATE, DELETE, and MERGE 8. Chapter 6: Tackling Different Kinds of JOINs 9. Chapter 7: Types, Converters, and Bindings 10. Chapter 8: Fetching and Mapping 11. Part 3: jOOQ and More Queries
12. Chapter 9: CRUD, Transactions, and Locking 13. Chapter 10: Exporting, Batching, Bulking, and Loading 14. Chapter 11: jOOQ Keys 15. Chapter 12: Pagination and Dynamic Queries 16. Part 4: jOOQ and Advanced SQL
17. Chapter 13: Exploiting SQL Functions 18. Chapter 14: Derived Tables, CTEs, and Views 19. Chapter 15: Calling and Creating Stored Functions and Procedures 20. Chapter 16: Tackling Aliases and SQL Templating 21. Chapter 17: Multitenancy in jOOQ 22. Part 5: Fine-tuning jOOQ, Logging, and Testing
23. Chapter 18: jOOQ SPI (Providers and Listeners) 24. Chapter 19: Logging and Testing 25. Other Books You May Enjoy

Executing the generated SQL and mapping the result set

Executing the generated SQL and mapping the result set to a POJO via jOOQ can be done via the fetching methods available in the jOOQ API. For instance, the next snippet of code relies on the fetchInto() flavor:

public List<Office> findOfficesInTerritory(String territory) {
  List<Office> result = ctx.selectFrom(table("office"))
    .where(field("territory").eq(territory))
    .fetchInto(Office.class); 
  return result;
}

What happened there?! Where did ResultQuery go? Is this black magic? Obviously not! It's just that jOOQ has immediately fetched results after constructing the query and mapped them to the Office POJO. Yes, the jOOQ's fetchInto(Office.class) or fetch().into(Office.class) would work just fine out of the box. Mainly, jOOQ executes the query and maps the result set to the Office POJO by wrapping and abstracting the JDBC complexity in a more object-oriented way. If we don't want to immediately fetch the results after constructing the query, then we can use the ResultQuery object like this:

// 'query' is the ResultQuery object
List<Office> result = query.fetchInto(Office.class);

The Office POJO is available in the code bundled with this book.

Important Note

jOOQ has a comprehensive API for fetching and mapping a result set into collections, arrays, maps, and so on. We will detail these aspects later on in Chapter 8, Fetching and Mapping.

The complete application is named DSLBuildExecuteSQL. Since this can be used as a stub application, you can find it available for Java/Kotlin in combination with Maven/Gradle. These applications (along with, in fact, all the applications in this book) use Flyway for schema migration. As you'll see later, Flyway and jOOQ make a great team.

So, let's quickly summarize this chapter before moving on to exploit the astonishing jOOQ Code Generator feature.

You have been reading a chapter from
jOOQ Masterclass
Published in: Aug 2022
Publisher: Packt
ISBN-13: 9781800566897
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime