Is there a way to have the data source tools automatically generate the foreignkey reference information for primary/foreign key relationships between tables.
Announcement
Collapse
No announcement yet.
X
-
Not yet, since the way that databases expose this in JDBC metadata is rather different per-DB. But if you have a large number of tables you can either use DataSource.addDynamicDSGenerator() to set up dynamic generation and extract such information yourself, or you can always sponsor an enhancement.
Comment