jOOQ stands for Java Object Oriented Querying. It combines these essential features: Code Generation, Active records, Typesafe SQL, SQL standard, Vendor-specific feature support jOOQ effectively combines complex SQL, typesafety, source code generation, active records, stored procedures, ...

learn more… | top users | synonyms

1
vote
1answer
31 views

Issue with jOOQ custom Type conversion

My application is working fine before I included custom type converter. I need to convert jOOQ UInteger to Integer, so I included a type converter to achieve this. Post this change, I am getting a ...
1
vote
1answer
36 views

How to use named parameter in plain sql with jooq

I'm using JOOQ with plain/raw SQL, so that means i'm not using any code generation or the fluid DSL thingy. The following code works: Connection connection = ...; DSLContext context = ...
1
vote
1answer
51 views

JOOQ SQL given 1 parameters but expected 0

I'm trying to figure out how to use JOOQ with NamedParameterJdbcTemplate. I have successfully created other queries, but I'm stuck at creating a query containing the WHERE clause. When I try to run ...
1
vote
1answer
27 views

Does jOOQ support linked SQL Servers?

This seems like a fairly straight-forward question, but I can't track down an answer without testing it: Does jOOQ support linked SQL Servers? (SQL Server 2008 R2). We have an application running in ...
0
votes
1answer
36 views

How to get simple Sum with JOOQ?

What is the right way to get simple sum with JOOQ? SELECT sum(PERSON.AGE) FROM PERSON; I think about somethink like that: BigDecimal sum = factory.select(sum(PERSON.AGE)).from(PERSON).fetch???; ...
2
votes
1answer
71 views

B/CLOB handling in jOOQ

Here's what the jOOQ manual has to say about the subject: jOOQ currently doesn't explicitly support JDBC BLOB and CLOB data types. If you use any of these data types in your database, jOOQ will ...
1
vote
1answer
85 views

Is by JOOQ generated api depended from DBMS?

I have generated the API with Jooq from local HSQLDB (DBMS). And the tests runs ok. But I get exceptions when trying to run the test with another DBMS like MySQL. Also, I have seen that the generated ...
1
vote
1answer
51 views

insert query using Jooq is it possible?

I have insert statement in a string value now i want to change that into Jooq and excute the jooq on the DB is it possible ? or am i over expecting ? My Insert Query : INSERT INTO ANTIQUES ...
1
vote
2answers
85 views

jooq extend existing dialect. Adopt MySQL dialect to apache Hive dialect

I'm trying to use JOOQ for quering Hive. Hive SQL dialect is pretty clode to MySQL dialect. Right now I've met these problems: Hive supports LIMIT N, it doesn't support LIMIT N OFFSET K. Dummy ...
3
votes
1answer
54 views

JOOQ concatenation

I have a query like this: Result<?> result = create.select(CONSUMER.CONS_ID_NO, CONSUMER.CONS_NAME, ...
1
vote
2answers
142 views

How to start transaction and rollback with JOOQ?

Yes! I have read the docs about jOOQ will never commit or rollback on the Connection (Except for CSV-imports, if explicitly configured in the Import API) jOOQ will never start any ...
2
votes
2answers
38 views

How optimal get one Entry (Record) by id with JOOQ?

I think that is very simple, but I cannot find anythink simples in the docs. How optimal get one Entry (Record) by id with JOOQ? Something like for creation of Record: factory.newRecord(MY_TABLE); ...
2
votes
1answer
246 views

Spring JDBC's transactions handling doesn't work with Google Guice

I use Google Guice and jOOQ in my project. Currently I decided to introduce transaction handling using Spring JDBC. So I did the following. I set a data source and a transaction manager in Guice ...
1
vote
1answer
70 views

Retrieving the value of selectCount in jooq

I have some code that looks like this: Record record = jooq .selectCount() .from(USERS) .fetchOne(); Currently I'm doing the following to get the count: Integer count = (Integer) ...
1
vote
1answer
70 views

Obfuscation and jOOQ

I'm going to use jOOQ and I probably need obfuscation. I don't know how jOOQ works under the hood. Will the obfuscation process give issues to the application?
2
votes
1answer
80 views

JOOQ - How to get the tbl_name.col_name of a TableField?

How to get the table + column qualifier name from the TableField. I have tried the following methods USER.ID.toString(); // "db.user.id" USER.ID.getName(); // "id"
-1
votes
2answers
94 views

Jooq query issue with case

I wrote this mysql query and tried to convert it to JOOQ query but not succeeded , this is mysql query SELECT `P`.`phone_number`, `A`.`emp_no`, SUM(CASE WHEN VCG.vid IN ( SELECT gv.vid FROM ...
2
votes
0answers
63 views

Are there any plans to support Netezza in JOOQ? [closed]

I was looking for Netezza dialect for JOOQ and soon realized that the database is not yet supported. 1) Are there any plans to support Netezza ? 2) What if I only want to use strandard ANSI SQL only ...
1
vote
1answer
63 views

postgres 'WITH' clause with jooq

Hell, I can't find a way to use the postgres 'WITH' clause with JOOQ. Could you please let me know if it's supported by JOOQ? Thanks
1
vote
1answer
72 views

JOOQ Debug Log not working

I am using jOOQ with slf4j, and set log level to DEBUG. In my class when i check the log level its in debug mood System.out.println(LoggerFactory.getLogger(PersonsReport.class).isDebugEnabled()); ...
0
votes
0answers
84 views

How to initialise and create a ResultSet and Record in Jooq?

I need to write some unit tests for that I have to mock the Result set and Record with some dummy data. I don't know how to initialize and instantiate them. Please help Thanks in advance.
1
vote
1answer
63 views

How to convert Record to Table Record in JOOQ?

I need to convert JOOQ's Result set of Record to a List of Table Record. Is there any method to do so?
1
vote
1answer
145 views

jOOQ convert String to Boolean

I have a table in MySQL with some columns (MD5, FLAGCONFIRMED, FLAGCHANGEPASSWORD) defined like "char(1)" where the only possible values are 0 and 1. I want jOOQ to convert these to Boolean in the ...
1
vote
1answer
91 views

Runtime validation of jOOQ generated classes after schema update?

I use the org.jooq.util.DefaultGenerator during the build process to generate jOOQ classes to represent my database schema. While the application runs, the schema is expected to change without the ...
1
vote
1answer
70 views

How to select from only one table in jOOQ using a query with a join?

I have the following query in jOOQ: factory() .select() .from(PERSON) .join(ENDUSER).on(ENDUSER.PERSON_FK.equal(PERSON.ID)) .where(ENDUSER.ID.equal(userId)) .fetchOne(); This query returns to me a ...
2
votes
1answer
296 views

Creating JOOQ query dynamically

I need to create a JOOQ SELECT query dynamically based on the set of parameters. I dont know how to append it dynamically. Please help Thanks in advance.
1
vote
1answer
48 views

Column size in jOOQ

Using ResultSet I can get ResultSetMetaData from which I can get size of the database column in characters (for example 15 for varchar(15)) using metaData.getColumnDisplaySize(index). Is it any way I ...
5
votes
1answer
180 views

What are best practices for maintaining a Mysql database schema in a cross platform way?

We have two software stacks, Ruby on Rails and Java, that share a single Mysql database. We're using the Jooq Java database abstraction layer, which works by reading an existing database schema and ...
1
vote
1answer
189 views

Comparisons of Oracle DATE column with java.sql.timestamp via JOOQ

I am using jooq to build queries for Oracle. Everything works fine except for dates: public static void main(String[] args) throws SQLException { java.sql.Timestamp now = new ...
1
vote
1answer
118 views

jooq issue with limit and offset

I have integrated jooq with spring and for all types of querying to the database (MySQL), I am using JDBC Template of spring. jooq library is used here to generate the sql query to pass to jdbc ...
0
votes
1answer
139 views

Get all databases and convert to String Array

How to add all the databases from server to String array in java? I am using JOOQ api to execute SQL statements and i need to get all the databases in comboBox where i can select specific database.
2
votes
1answer
113 views

Can JPA/Hibernate be combined with other persistence framework like jOOQ

We have domain that where 90% of the classes are very straightforward and can be easily mapped 1:1 in the DB. I am very happy how Hibernate combined with spring-data-jpa removes tons of chores for ...
0
votes
3answers
221 views

Loop through Result<Record> from jOOQ in <c:forEach>

Is there a way to loop through Result<Record> from jOOQ in a <c:forEach>? Here's the getter method: public Vector<Map<String, String>> getUsers() { Factory sql = new ...
2
votes
4answers
187 views

Cast smallint unsigned in java

Hi im using jOOQ to get id which in mysql is smallint unsigned primary key auto_increment public List<Integer> getID() { Factory sql = new Factory(Database.getInstance().connect(), ...
1
vote
1answer
177 views

database creation statement with jooq

In our Java project we have started to use jooq for query building instead of plain SQL strings. The library is awesome, but I have a question (since I am jooq-newbie): Is it possible to create ...
1
vote
1answer
57 views

Jooq MySQL compilation error with Routines generation

I'm using Jooq as the SQL layer in my application. It generates the code/pojos/records/routines fine but Routines.java, where MySQL procedures reside, doesn't compile because it generated a duplicated ...
0
votes
0answers
73 views

Jooq generate too slow when information_schema is too large

select count(1) from information_schema.`TABLES` 189744 cost 2s select count(1) from information_schema.`COLUMNS` 3249773 cost 1276s I think there may be to many db and tables in db server ...
1
vote
0answers
111 views

Java has jOOQ, anything like that for c++? [closed]

jOOQ is a DSL for building SQL queries in Java... anything like this for c++?
1
vote
1answer
103 views

JOOQ No Connection configured Issue

I am insert a record to MySql using JOOQ , this is my code if (f.getConnection()!=null) { UserRecord us = new UserRecord(); us.setAccountId(UInteger.valueOf(accountId)); ...
1
vote
1answer
116 views

Spring roo and jOOQ

jOOQ should be an alternative to standard JPA. Is there any way to use it in Roo as JPA provider? Is it even possible? The reason for this: We have Oracle database and jOOQ has quick and easy set up ...
1
vote
1answer
63 views

Update Jooq's auto genarated classes

I am using jOOQ with Mysql (with maven). I have created a new table in my DB, so how can I update the jOOQ's auto generated classes without regenerating the existing classes? When I run mvn ...
3
votes
1answer
117 views

How do I fetch two different record types from the database?

I have two tables with a FK relation. What I want is equivalent to: select A.*, B.* from A join B on B.A_ID = A.ID How do I do this efficiently in jOOQ? In the end, I need one instance of ...
0
votes
0answers
156 views

jooq wrong date from mysql

I am using jOOQ to read data from a MySql database. I am reading a column whose type is 'date'. When I print the result set date is wrong. What can be the reason ? Database Date => ...
1
vote
1answer
204 views

how Jooq distinct or countDistinct more than one column

I found that the distinct function in the Factory class only accepts one parameter public static AggregateFunction<Integer> countDistinct(Field<?> field); and there is no function like ...
1
vote
1answer
151 views

Querying the appropriate database schema

This is a follow-on question to my earlier question about specifying multiple schemata in java using jooq to interact with H2. My test H2 DB currently has 2 schemata, PUBLIC and INFORMATION_SCHEMA. ...
1
vote
1answer
496 views

Accessing H2 database schema

Im currently accessing an embedded H2 database in java using jOOQ to generate table classes etc. I can currently execute queries such as create.select().from(TEST).fetch() in my code, return ...
1
vote
1answer
114 views

How can I map mysql varbinary to String in jOOQ code generation

MySQL doesn't accept a value like 'foo' if the column is of type varchar with a unique index and has a value 'Foo'. So I want to change varchar into varbinary, But jOOQ maps varbinary to byte[] in ...
1
vote
1answer
246 views

How do I avoid MySql deadlocks?

I'm talking to a MySql database using the jOOQ database abstraction layer. I keep getting the following error: SQL [null]; Deadlock found when trying to get lock; try restarting transaction This ...
2
votes
1answer
135 views

SBT - get path to managed jars

I want to use some dependencies to perform code generation in Scala. Example: libraryDependencies += "org.jooq" % "jooq" % "2.4.0" val jooqTask = jooq := { val classpath = ...
1
vote
1answer
171 views

jooq aggregate functions

I am trying to use aggregate function like max, min in jOOQ and refering their mannual but I am not understanding their examples that how they created max function and used it in their example. Can ...

1 2