Configuring Eclipse JPA DDL Generation to Generate SQL Delimiter
Is there a way to customize the Eclipse JPA DDL generation to specify the trailing ';' for each statement in the output file? For example:
CREATE TABLE PHYSICAL_OBJECT (ID BIGINT NOT NULL, PRIMARY KEY (ID))
will become
CREATE TABLE PHYSICAL_OBJECT (ID BIGINT NOT NULL, PRIMARY KEY (ID));
+3
source to share
No one has answered this question yet
See similar questions:
or similar: