Re: Questions about the modeler

2021-11-21 Thread Andrus Adamchik
Hi Tony, We do not generate this SQL. Schema retrieval is abstracted by the JDBC API, so specifics are hidden within a given driver. All we do is this: DatabaseMetaData md = connection.getMetadata(); md.getTables(..); md.getColumns(..); md.getImportedKeys(..); Andrus > On Nov 22,

Questions about the modeler

2021-11-21 Thread Tony Giaccone
Two questions about reverse engineering. Is there a setting that will cause the modeler to emit the SQL that is used to read tables and schema information? Second is where is it in the modeler that generates this sql? Tony