Hello,

I am following the guidance documented here:
https://stackoverflow.com/questions/44030012/build-left-join-query-with-jooq-using-two-tables-from-two-different-databases

The example given (how to query over multiple databases) is something like 
this:

DSL.using(configuration)
   .select()
   .from(LIBRARY.BOOKS)
   .leftJoin(LIBRARY2.AUTHOR2)
   .on(LIBRARY.BOOKS.AUTHOR_ID.eq(LIBRARY2.AUTHOR2.ID))
   .fetch();


The question I have is how do I configure the datasources such that the 
above will work.  I am not as familiar with the data source config, so I 
don't know if I need just one (which doesn't specify a single database) or 
multiple, in which case the jooq configuration class would somehow combine 
them together.

Thank you.
Andy Tarpley

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to