接口 SchemaCreator
-
- 所有已知实现类:
SchemaCreatorImpl
public interface SchemaCreatorService delegate for handling schema creation. The actual contract here is kind of convoluted with the design idea of allowing this to work in ORM (JDBC) as well as in non-JDBC environments (OGM, e.g.) simultaneously. ExecutionContext allows- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voiddoCreation(Metadata metadata, ExecutionOptions options, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)Perform a schema creation from the indicated source(s) to the indicated target(s).
-
-
-
方法详细资料
-
doCreation
void doCreation(Metadata metadata, ExecutionOptions options, SourceDescriptor sourceDescriptor, TargetDescriptor targetDescriptor)
Perform a schema creation from the indicated source(s) to the indicated target(s).- 参数:
metadata- Represents the schema to be created.options- Options for executing the creationsourceDescriptor- description of the source(s) of creation commandstargetDescriptor- description of the target(s) for the creation commands
-
-