Tagged Questions

What's jOOQ jOOQ stands for Java Object Oriented Querying. It combines these essential features: Code Generation: jOOQ generates a simple Java representation of your database schema. Every table, view, stored procedure, enum, UDT is a class. Active records: jOOQ implements an easy-to-use active ...

learn more… | top users | synonyms

17
votes
3answers
761 views

Java: JOOQ persistence framework performance and feed back

I've stumbled over a nice SQL builder framework, called JOOQ. BTW, in Russian JOOQ sounds like noun meaning "bug" (as an insect), "beetle" ;) If you have any feedback about JOOQ, it's performance and ...
4
votes
2answers
237 views

Mapping between Oracle Packages and Java Packages

In my database interfacing library jOOQ, I would like to add support for Oracle (or DB2, etc) packages. I have already implemented stored procedure/function support where every stored object is ...
3
votes
2answers
793 views

JOOQ and Spring

Has anyone tried using JOOQ with the Spring framework or am I breaking new ground? http://www.jooq.org
2
votes
2answers
81 views

How to write LEFT OUTER JOIN on the same table in jOOQ?

how to write following SQL using jOOQ? SELECT * FROM food_db_schema.tblCategory AS t1 LEFT OUTER JOIN food_db_schema.tblCategory AS t2 ON t1.category_id = t2.parent_id WHERE t2.parent_id IS NULL AND ...
2
votes
2answers
157 views

What other RDBMS should my open source Java persistence library support

I'm releasing a new version of jOOQ, a Java persistence library built on top of JDBC. Currently, I support these seven RDBMS: Oracle MySQL Postgres H2 HSQLDB DB2 SQLite (experimental) With jOOQ I ...
2
votes
3answers
298 views

How to use nested structured types (UDT's) in DB2?

I'm trying to used nested structured types (UDT's) using DB2 but have encountered some problems. Below are the SQL statements for creating the types, table, functions and transforms for the use-case. ...
2
votes
3answers
451 views

No common interface to java.sql.ResultSet, CallableStatement, SQLInput

This is the situation In jOOQ, there is a lot of need for abstraction over JDBC. I want the jOOQ client code to be unaware of the fact, that some data is retrieved from a simple ResultSet, some data ...
2
votes
1answer
121 views

My open source library is stabilising. Now how to get attention?

I had recently stabilised developments of a major open source library written in Java. I have then published an article on the server side, which has brought me a lot of positive (but also critic, ...
1
vote
1answer
81 views

JOOQ insert into select syntax with specified columns

Can JOOQ do 'insert into select' syntax for specified columns? I run several different tries.. The Tables: table1 (Expected insert) id column1 column2 column3 ... timestamp 1 John ...
1
vote
4answers
107 views

ORM frameworks used for insert only / query only apps

I've been using Hibernate for years and never have a problem with it, but just realized most of my work involved a CRUD approach, where I needed data to stay persisted and modified at will. The ...
1
vote
1answer
59 views

How can we profile JOOQ statements for speed

I already have implemented JOOQ with Union Platform as a java based game server and using Union Platform's Orbiter Micro (Union JS Client) for running it on a browser. However, event with small 30-40 ...
1
vote
1answer
45 views

jOOQ complex update - how to lock the table?

here is a "add node" SQL query for nested set model LOCK TABLE mytestdb.tbltree WRITE; SELECT @myRight := rgt FROM mytestdb.tbltree WHERE name = 'apples'; UPDATE mytestdb.tbltree SET rgt = rgt + 2 ...
1
vote
2answers
88 views

jOOQ insert query with returning generated keys

I installed jOOQ into eclipse, generated classes for my mySQL, but I still have problems to write also some basic queries. I tried to compose insert query with returning of generated keys, but ...
1
vote
1answer
110 views

Code Generater interprets NUMERIC(20,0) as BIGDECIMAL while it should be interpreted as Long

I have a table with a field name "BID" with its data type set as NUMERIC(20,0). Now i know that it will never be a decimal/float value but always be a int/long i.e a natural number. Is there a way ...
1
vote
1answer
143 views

Not able to generate tables from Jooq Jooq Configuration jooq.properties for postgresql

I have generated the java model files from MySQL tables. But now we are switching to PostgreSQL and i need everything to work there. So i have created a new jooq.properties files for PostgreSQL ...
1
vote
1answer
105 views

How to get all the result columns from database with other custom(concat, sum, count) columns in Jooq

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 ...
1
vote
1answer
124 views

Sort a query by a varchar field(which have numerical values) on numerical basis with Jooq

How can i sort a varchar field , i have taken ID as varchar and i want to sort it numerically. We can do this in SQL with using sql query ... order by 0+id desc What i have in Jooq is ...
0
votes
1answer
23 views

jooq return query with incorrect values

I want to insert into database table data using following jooq based code to generate query: Factory jf = getJooqFactory(); int surveyId = jf.nextval(SURVEY_ID_SEQ).intValue(); jf.insertInto(SURVEY) ...