接口 QualifiedName
-
- 所有已知实现类:
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: Also, be careful about the usage ofrender(). 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.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 IdentifiergetCatalogName()IdentifiergetObjectName()IdentifiergetSchemaName()Stringrender()Returns a String-form of the qualified name.
-
-
-
方法详细资料
-
getCatalogName
Identifier getCatalogName()
-
getSchemaName
Identifier getSchemaName()
-
getObjectName
Identifier getObjectName()
-
render
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()- 返回:
- The string form
-
-