Nimish edited a comment on Bug HHH-7389

Hi
You can use the following code to create the tables.
Configuration configuration = new Configuration().configure();
Connection connection = getJDBCConnection(database);
SchemaExport export = new SchemaExport(configuration,connection);
export.setOutputFile("my-schema.sql");
export.setDelimiter(";");
export.execute(true, true, false, true);

For this you need to create a JDBC connection to that perticular database and pass that connection as an argument of the schema export constructor.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira