Interface JdbcSchemaHandler
-
public interface JdbcSchemaHandler
JDBC schema handler.- Since:
- 3.9.0
- Author:
- Denis Stepanov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createSchema(java.sql.Connection connection, Dialect dialect, java.lang.String name)
Creates a new schema.void
useSchema(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
-
-