Interface JdbcSchemaHandler
public interface JdbcSchemaHandler
JDBC schema handler.
- Since:
- 3.9.0
- Author:
- Denis Stepanov
-
Method Summary
Modifier and TypeMethodDescriptionvoid
createSchema
(Connection connection, Dialect dialect, String name) Creates a new schema.void
useSchema
(Connection connection, Dialect dialect, String name) Uses the given schema..
-
Method Details
-
createSchema
Creates a new schema.- Parameters:
connection
- The JDBC connectiondialect
- The dialectname
- The schema name
-
useSchema
Uses the given schema..- Parameters:
connection
- The JDBC connectiondialect
- The dialectname
- The schema name
-