Answer the question
In order to leave comments, you need to log in
Is there a library to generate DDL based on databasemetadata?
You need to get the DDL of objects (tables, views, procedures, etc.) from the corresponding JDBC driver. It is desirable that you still be able to set the template itself,
for example like this:
CREATE TABLE $table_name (
{for $column in $table_name.columns}
$column.name $column.type $column.constraints,
...
)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question