This version of the manual is outdated. For the latest version, follow this link: http://www.jooq.org/doc/3.0/manual.
| The jOOQ User Manual. Multiple Pages : jOOQ classes and their usage | previous : next |
# Overview
jOOQ essentially has two packages:
- org.jooq: the jOOQ API. Here you will find interfaces for all SQL concepts
- org.jooq.impl: the jOOQ implementation and factories. Most implementation classes are package private, you can only access them using the org.jooq.impl.Factory
This section is about the main jOOQ classes and the global architecture. Most of the time, however, you will be using the DSL or fluent API. Where SQL meets Java in order to create queries the way you're used to in SQL
# Table of contents
- The example database
- The Factory class
- Tables and Fields
- Results, Cursors and Records
- CRUD and Updatable Records
- The Query and its various subtypes
- ResultQuery and fetch() methods
- Bind values and parameters
- QueryParts and the global architecture
- Serializability of jOOQ objects
- Extend jOOQ with custom types
| The jOOQ User Manual. Multiple Pages : jOOQ classes and their usage | previous : next |
