Package de.hybris.bootstrap.ddl
Interface DatabaseStatementGenerator
-
- All Known Implementing Classes:
DatabaseStatementGenerator.InitializingDatabaseStatementGenerator,DatabaseStatementGenerator.UpdatingDatabaseStatementGenerator
public interface DatabaseStatementGenerator
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDatabaseStatementGenerator.InitializingDatabaseStatementGeneratorstatic classDatabaseStatementGenerator.UpdatingDatabaseStatementGenerator
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateInserts(java.io.Writer writer, java.util.Collection<YRecord> yRecords)voidgenerateDDL(java.io.Writer writer)voidgenerateDropDDL(java.io.Writer writer)
-
-
-
Method Detail
-
generateDDL
void generateDDL(java.io.Writer writer) throws java.io.IOException- Throws:
java.io.IOException
-
generateDropDDL
void generateDropDDL(java.io.Writer writer) throws java.io.IOException- Throws:
java.io.IOException
-
createInserts
void createInserts(java.io.Writer writer, java.util.Collection<YRecord> yRecords) throws org.apache.ddlutils.DdlUtilsException, java.io.IOException- Throws:
org.apache.ddlutils.DdlUtilsExceptionjava.io.IOException
-
-