Interface QualifiedName
-
- All Known Implementing Classes:
QualifiedNameImpl,QualifiedNameParser.NameParts,QualifiedSequenceName,QualifiedTableName,Sequence.Name
public interface QualifiedNameModels the qualified name of a database object. Some things to keep in mind wrt catalog/schema:DatabaseMetaData.isCatalogAtStart()DatabaseMetaData.getCatalogSeparator()
render(). If the intention is to get the name as used in the database, theJdbcEnvironment->QualifiedObjectNameFormatter.format(org.hibernate.boot.model.relational.QualifiedTableName, org.hibernate.dialect.Dialect)should be used instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdentifiergetCatalogName()IdentifiergetObjectName()IdentifiergetSchemaName()java.lang.Stringrender()Returns a String-form of the qualified name.
-
-
-
Method Detail
-
getCatalogName
Identifier getCatalogName()
-
getSchemaName
Identifier getSchemaName()
-
getObjectName
Identifier getObjectName()
-
render
java.lang.String render()
Returns a String-form of the qualified name. Depending on intention, may not be appropriate. May wantSqlStringGenerationContext.format(org.hibernate.boot.model.relational.QualifiedTableName)instead.- Returns:
- The string form
-
-