接口 PrimaryKeyInformation
-
- 所有已知实现类:
PrimaryKeyInformationImpl
public interface PrimaryKeyInformationProvides access to information about existing primary key for a table- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Iterable<ColumnInformation>getColumns()Obtain the columns making up the primary key.IdentifiergetPrimaryKeyIdentifier()Obtain the identifier for this PK.
-
-
-
方法详细资料
-
getPrimaryKeyIdentifier
Identifier getPrimaryKeyIdentifier()
Obtain the identifier for this PK.- 返回:
- The PK identifier.
-
getColumns
Iterable<ColumnInformation> getColumns()
Obtain the columns making up the primary key. Returned in sequential order.- 返回:
- The columns
-
-