Api.GetTableIndexes 方法 (JET_SESID、JET_DBID、String)
循环访问表中的所有索引,并返回有关每个索引的信息。
Namespace:Microsoft.Isam.Esent.Interop
装配: Microsoft.Isam.Esent.Interop.dll) 中的 Microsoft.Isam.Esent.Interop (
语法
'Declaration
Public Shared Function GetTableIndexes ( _
sesid As JET_SESID, _
dbid As JET_DBID, _
tablename As String _
) As IEnumerable(Of IndexInfo)
'Usage
Dim sesid As JET_SESID
Dim dbid As JET_DBID
Dim tablename As String
Dim returnValue As IEnumerable(Of IndexInfo)
returnValue = Api.GetTableIndexes(sesid, _
dbid, tablename)
public static IEnumerable<IndexInfo> GetTableIndexes(
JET_SESID sesid,
JET_DBID dbid,
string tablename
)
参数
sesid
类型: Microsoft.Isam.Esent.Interop.JET_SESID要使用的会话。
dbid
类型: Microsoft.Isam.Esent.Interop.JET_DBID包含表的数据库。
tablename
类型: System.String表的名称。
返回值
类型: System.Collections.Generic.IEnumerable<IndexInfo>
针对表中每个索引的 IndexInfo 的迭代器。