Hi, We have 2 supported RDBMS (SQLServer and Oracle) with similar schemas. I am trying to generated a jOOQ model to interact with either of the 2.
When I look at the routines, I can see the following: super(org.jooq.SQLDialect.SQLSERVER, "spGetObjectID", test.generated.dbo.Dbo); Obviously this would not work on the Oracle version, though we do have the same procedure. Why is the dialect hardcoded in the class at generation time? Can't this be inferred at the time of the call so that it could be removed from the generator? Cheers, -Christopher
