| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
SelectSelectStep |
SelectSelectStep.select(Collection<? extends Field<?>> fields)
Add additional fields to the
SELECT clause of this query |
SelectSelectStep |
FactoryOperations.select(Collection<? extends Field<?>> fields)
Create a new DSL select statement.
|
SelectSelectStep |
SelectSelectStep.select(Field<?>... fields)
Add additional fields to the
SELECT clause of this query |
SelectSelectStep |
FactoryOperations.select(Field<?>... fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryOperations.selectCount()
Create a new DSL select statement for
COUNT(*)
Example:
Factory create = new Factory();
create.selectCount()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
SelectSelectStep |
FactoryOperations.selectDistinct(Collection<? extends Field<?>> fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryOperations.selectDistinct(Field<?>... fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryOperations.selectOne()
Create a new DSL select statement for constant
1 literal
Example:
Factory create = new Factory();
create.selectOne()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
SelectSelectStep |
FactoryOperations.selectZero()
Create a new DSL select statement for constant
0 literal
Example:
Factory create = new Factory();
create.selectZero()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
| Modifier and Type | Method and Description |
|---|---|
SelectSelectStep |
FactoryProxy.select(Collection<? extends Field<?>> fields)
Deprecated.
|
SelectSelectStep |
Factory.select(Collection<? extends Field<?>> fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryProxy.select(Field<?>... fields)
Deprecated.
|
SelectSelectStep |
Factory.select(Field<?>... fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryProxy.selectCount()
Deprecated.
|
SelectSelectStep |
Factory.selectCount()
Create a new DSL select statement for
COUNT(*)
Example:
Factory create = new Factory();
create.selectCount()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
SelectSelectStep |
FactoryProxy.selectDistinct(Collection<? extends Field<?>> fields)
Deprecated.
|
SelectSelectStep |
Factory.selectDistinct(Collection<? extends Field<?>> fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryProxy.selectDistinct(Field<?>... fields)
Deprecated.
|
SelectSelectStep |
Factory.selectDistinct(Field<?>... fields)
Create a new DSL select statement.
|
SelectSelectStep |
FactoryProxy.selectOne()
Deprecated.
|
SelectSelectStep |
Factory.selectOne()
Create a new DSL select statement for constant
1 literal
Example:
Factory create = new Factory();
create.selectOne()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
SelectSelectStep |
FactoryProxy.selectZero()
Deprecated.
|
SelectSelectStep |
Factory.selectZero()
Create a new DSL select statement for constant
0 literal
Example:
Factory create = new Factory();
create.selectZero()
.from(table1)
.join(table2).on(field1.equal(field2))
.where(field1.greaterThan(100))
.orderBy(field2);
|
Copyright © 2013. All Rights Reserved.