For my project I want to use jOOQ, but I have 3 databases. Two of them are similar (staging, production) and the third is the database for the application, with a completely different schema.The database Version is the same for all of them, MySQl 5.6. The difference is between the used tables, in one database i got the company translations and in the other database some customers etc.. Plain SQL is very unreadable, because the queries are very complicated. I know this makes no sense, but this is what I got.
Is there a possible way to do the code generation for different databases with different schemas?
I use Maven for the code generation.