Interface SqlStringGenerationContext
- All Known Implementing Classes:
SqlStringGenerationContextImpl
public interface SqlStringGenerationContext
A context provided to methods responsible for generating SQL strings on startup.
-
Method Summary
Modifier and TypeMethodDescriptioncatalogWithDefault(Identifier explicitCatalogOrNull) format(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).Deprecated.booleanIs the generated SQL for use in schema migration?schemaWithDefault(Identifier explicitSchemaOrNull) toIdentifier(String text) Generate an Identifier instance from its simple name as obtained from mapping information.
-
Method Details
-
getDialect
Dialect getDialect()- Returns:
- The database dialect of the current JDBC environment, to generate SQL fragments that are specific to each vendor.
-
getIdentifierHelper
Deprecated.UsetoIdentifier(String)instead.- Returns:
- The helper for dealing with identifiers in the current JDBC environment.
Note that the Identifiers returned from this helper already account for auto-quoting.
-
toIdentifier
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.
- Parameters:
text- The text form of a name as obtained from mapping information.- Returns:
- The identifier form of the name.
-
getDefaultCatalog
Identifier getDefaultCatalog()- 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.
-
catalogWithDefault
- Parameters:
explicitCatalogOrNull- An explicitly configured catalog, ornull.- Returns:
- The given identifier if non-
null, or the default catalog otherwise.
-
getDefaultSchema
Identifier getDefaultSchema()- 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.
-
schemaWithDefault
- Parameters:
explicitSchemaOrNull- An explicitly configured schema, ornull.- Returns:
- The given identifier if non-
null, or the default schema otherwise.
-
format
Render a formatted a table name- Parameters:
qualifiedName- The table name- Returns:
- The formatted name,
-
format
Render a formatted sequence name- Parameters:
qualifiedName- The sequence name- Returns:
- The formatted name
-
format
Render a formatted non-table and non-sequence qualified name- Parameters:
qualifiedName- The name- Returns:
- The formatted name
-
formatWithoutCatalog
Render a formatted sequence name, without the catalog (even the default one).- Parameters:
qualifiedName- The sequence name- Returns:
- The formatted name
-
isMigration
boolean isMigration()Is the generated SQL for use in schema migration?- Returns:
trueif and only if this is a migration
-
toIdentifier(String)instead.