Skip to content

Tag: java

JOOQ “IN” Query throws null pointer exception

When we try to fetch data with Null values field(TABLE_NAME.COLUMN_NAME.in(null)) with IN clause getting null pointer exception. Maybe because of this. In the database, we can provide null in IN clause. There is an existing “won’t fix” issue in jooq https://github.com/jOOQ/jOOQ/issues/3867 T…

How to add to INSERT INTO PRIMARY KEY AND FOREIGN KEY

So i have two tables: locations and employees i want locations_id to be the same in employees.locations_id, I am trying to make it all in one statement the erros is this You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216…

Populate DTO using query with JOIN

I have this main Product table: Additional table for storing categories that should be returned as List: Additional table for storing Payment Methods that should be returned as List: I want to return a result like this: I tried this: What is the proper way to populate this DTO? Answer If, as indicated in your…