python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Which Code generator should be used for SQL Server
I use my liqibase scripts for Jooq code generation. As I learned from the instructions and log, the Dialect is H2.
Is that a problem if the application runs against a SQL Server database afterwards? D...
MelleD
Votes: 0
Answers: 1
Jooq one to many select using multiset
i have two tables and and corresponding dto classes:
| Records | | InnerRecords|
| name | | name |
| innerRecordsId | <--- | id |
i am trying...
SP QRT
Votes: 0
Answers: 1
Change where clause for batch delete
I want to like to create a batch delete something like:
DELETE t WHERE t.my_attribute = ?
First try was:
private void deleteRecord( ) {
//loop
final MyRecord myRecord = new MyRecord();
...
MelleD
Votes: 0
Answers: 1
In jooq, how do I add an "and" condition when don't know whether there is a "where" prior to it or not?
I have the following Jooq code:
if (...) {
query = query.where(...);
}
query = query.and(...);
The problem is that I don't know whether the where() statement will be added or not.
If not, the an...
powerseed
Votes: 0
Answers: 1