Interface QualifiedName
-
- All Known Implementing Classes:
QualifiedNameImpl
,QualifiedNameParser.NameParts
,QualifiedSequenceName
,QualifiedTableName
,Sequence.Name
public interface QualifiedName
Models 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 get 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 Identifier
getCatalogName()
Identifier
getObjectName()
Identifier
getSchemaName()
java.lang.String
render()
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 wantQualifiedObjectNameFormatter.format(org.hibernate.boot.model.relational.QualifiedTableName, org.hibernate.dialect.Dialect)
instead. SeeJdbcEnvironment.getQualifiedObjectNameFormatter()
- Returns:
- The string form
-
-