I have a table Table1 with 6 columns.

Here is the sql statement that i need to map.

Select *,count(ID) as IdCount from Table1;

Now, the sql query result will be 7 columns ( 6 Table1 columns and 1 IdCount column). But when i implement the same in Jooq with this query, it only gets a single column "IDCount".

SelectQuery q = factory.selectQuery();
        q.addSelect(Table1.ID.count().as("IdCount"));
        q.addFrom(Table1.TABLE1);

Now, the resultant recordset have only a single column "IdCount" while what i need is all the columns and one additional column "IdCount". I want 7 columns in Jooq too.

link|improve this question

What are you trying to do in SQL? Before you can map your SQL statements to jOOQ, you have to have a clear idea of your SQL statement itself... – Lukas Eder Apr 29 '11 at 18:19
Modified the question! Hoping that you will answer it. – Shekhar Apr 30 '11 at 18:59
feedback

1 Answer

up vote 3 down vote accepted

The * (star) operator is not explicitly supported by jOOQ. However, you have two options to map your SQL statement to jOOQ:

Option 1 (with the DSL syntax):

List<Field<?>> fields = new ArrayList<Field<?>>();
fields.addAll(Table1.TABLE1.getFields());
fields.add(Table1.ID.count().as("IdCount"));

Select<?> select = factory.select(fields).from(Table1.TABLE1);

Option 2 (with the "regular" syntax, which you used):

SelectQuery q = factory.selectQuery();
q.addSelect(Table1.TABLE1.getFields());
q.addSelect(Table1.ID.count().as("IdCount"));
q.addFrom(Table1.TABLE1);

Option 3 (added in a later version of jOOQ):

// For convenience, you can now specify several "SELECT" clauses
factory.select(Table1.TABLE1.getFields())
       .select(Table1.ID.count().as("IdCount")
       .from(Table1.TABLE1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.