Interface JdbcSchemaHandler
-
public interface JdbcSchemaHandlerJDBC schema handler.- Since:
- 3.9.0
- Author:
- Denis Stepanov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateSchema(java.sql.Connection connection, Dialect dialect, java.lang.String name)Creates a new schema.voiduseSchema(java.sql.Connection connection, Dialect dialect, java.lang.String name)Uses the given schema..
-
-
-
Method Detail
-
createSchema
void createSchema(java.sql.Connection connection, Dialect dialect, java.lang.String name)Creates a new schema.- Parameters:
connection- The JDBC connectiondialect- The dialectname- The schema name
-
useSchema
void useSchema(java.sql.Connection connection, Dialect dialect, java.lang.String name)Uses the given schema..- Parameters:
connection- The JDBC connectiondialect- The dialectname- The schema name
-
-