Hello
I'm looking at querydsl for a simple standalone project, with just 2 tables.
However, I need some transactional request to achieve something close to this pseudo code:
int max = select max(index) from tableA where topic = "foo";
insert into tableB values (... , index = max +1);
I don't see how I can use jdbc commit/rollback, apart from falling back to the sql string and doing it myself.
What am I missing ?
thanks in advance
Best regards and thx for querydsl :)
nono