Package org.hibernate.persister.entity
Class ExplicitSqlStringGenerationContext
java.lang.Object
org.hibernate.persister.entity.ExplicitSqlStringGenerationContext
- All Implemented Interfaces:
SqlStringGenerationContext
public class ExplicitSqlStringGenerationContext
extends Object
implements SqlStringGenerationContext
SqlStringGenerationContext implementation with support for overriding the
default catalog and schema
-
Constructor Summary
ConstructorsConstructorDescriptionExplicitSqlStringGenerationContext
(String defaultCatalog, String defaultSchema, SessionFactoryImplementor factory) -
Method Summary
Modifier and TypeMethodDescriptionformat
(QualifiedName qualifiedName) Render a formatted non-table and non-sequence qualified nameformat
(QualifiedSequenceName qualifiedName) Render a formatted sequence nameformat
(QualifiedTableName qualifiedName) Render a formatted a table nameformatWithoutCatalog
(QualifiedSequenceName qualifiedName) Render a formatted sequence name, without the catalog (even the default one).boolean
Is the generated SQL for use in schema migration?toIdentifier
(String text) Generate an Identifier instance from its simple name as obtained from mapping information.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.boot.model.relational.SqlStringGenerationContext
catalogWithDefault, schemaWithDefault, withDefaults, withDefaults, withDefaults
-
Constructor Details
-
ExplicitSqlStringGenerationContext
public ExplicitSqlStringGenerationContext(String defaultCatalog, String defaultSchema, SessionFactoryImplementor factory)
-
-
Method Details
-
getDialect
- Specified by:
getDialect
in interfaceSqlStringGenerationContext
- Returns:
- The database dialect of the current JDBC environment, to generate SQL fragments that are specific to each vendor.
-
toIdentifier
Description copied from interface:SqlStringGenerationContext
Generate an Identifier instance from its simple name as obtained from mapping information.Note that Identifiers returned from here may be implicitly quoted based on 'globally quoted identifiers' or based on reserved words.
- Specified by:
toIdentifier
in interfaceSqlStringGenerationContext
- Parameters:
text
- The text form of a name as obtained from mapping information.- Returns:
- The identifier form of the name.
-
getDefaultCatalog
- Specified by:
getDefaultCatalog
in interfaceSqlStringGenerationContext
- Returns:
- The default catalog, used for table/sequence names that do not explicitly mention a catalog.
May be
null
. This default is generally applied automatically by theformat methods
, but in some cases it can be useful to access it directly.
-
getDefaultSchema
- Specified by:
getDefaultSchema
in interfaceSqlStringGenerationContext
- Returns:
- The default schema, used for table/sequence names that do not explicitly mention a schema.
May be
null
. This default is generally applied automatically by theformat methods
, but in some cases it can be useful to access it directly.
-
format
Description copied from interface:SqlStringGenerationContext
Render a formatted a table name- Specified by:
format
in interfaceSqlStringGenerationContext
- Parameters:
qualifiedName
- The table name- Returns:
- The formatted name,
-
format
Description copied from interface:SqlStringGenerationContext
Render a formatted sequence name- Specified by:
format
in interfaceSqlStringGenerationContext
- Parameters:
qualifiedName
- The sequence name- Returns:
- The formatted name
-
format
Description copied from interface:SqlStringGenerationContext
Render a formatted non-table and non-sequence qualified name- Specified by:
format
in interfaceSqlStringGenerationContext
- Parameters:
qualifiedName
- The name- Returns:
- The formatted name
-
formatWithoutCatalog
Description copied from interface:SqlStringGenerationContext
Render a formatted sequence name, without the catalog (even the default one).- Specified by:
formatWithoutCatalog
in interfaceSqlStringGenerationContext
- Parameters:
qualifiedName
- The sequence name- Returns:
- The formatted name
-
isMigration
public boolean isMigration()Description copied from interface:SqlStringGenerationContext
Is the generated SQL for use in schema migration?- Specified by:
isMigration
in interfaceSqlStringGenerationContext
- Returns:
true
if and only if this is a migration
-