I have this situation: two different dbms (specifically one is MariaDB the other Oracle) with the same database structure:
- same tables with the same names
- same columns with the same names
- same fks, ucs etc
Only differences could be in some types supported differently in MariaDB and Oracle but traslated in the same type in Java.
Can I generate just once (lets say based on MariaDB db) and then configure the SQLDialect at runtime based on the JDBC Connection?
Thanks in advance for your support.
Simone
PS: I know that Oracle i supported only by the pro version, I already downloaded the trial version.