| java.lang.Object com.technoetic.xplanner.db.hibernate.TransformingSchemaExport
TransformingSchemaExport | public class TransformingSchemaExport (Code) | | Modified version of Hibernate's SchemaExport to allow us to use XSL transformed mapping files. The
original class couldn't be used because the execute() method is private.
|
TransformingSchemaExport | public TransformingSchemaExport(Configuration cfg) throws HibernateException(Code) | | Create a schema exporter for the given Configuration
|
TransformingSchemaExport | public TransformingSchemaExport(Configuration cfg, Properties connectionProperties) throws HibernateException(Code) | | Create a schema exporter for the given Configuration, with the given
database connection properties.
|
create | public void create(boolean script, boolean export) throws Exception(Code) | | Run the schema creation script.
Parameters: script - print the DDL to the console Parameters: export - export the script to the database |
drop | public void drop(boolean script, boolean export) throws Exception(Code) | | Run the drop schema script.
Parameters: script - print the DDL to the console Parameters: export - export the script to the database |
|
|