Api.GetColumnDictionary method
Creates a dictionary which maps column names to their column IDs.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Function GetColumnDictionary ( _
sesid As JET_SESID, _
tableid As JET_TABLEID _
) As IDictionary(Of String, JET_COLUMNID)
'Usage
Dim sesid As JET_SESID
Dim tableid As JET_TABLEID
Dim returnValue As IDictionary(Of String, JET_COLUMNID)
returnValue = Api.GetColumnDictionary(sesid, _
tableid)
public static IDictionary<string, JET_COLUMNID> GetColumnDictionary(
JET_SESID sesid,
JET_TABLEID tableid
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe sesid to use.
tableid
Type: Microsoft.Isam.Esent.Interop.JET_TABLEIDThe table to retrieve the information for.
Return value
Type: System.Collections.Generic.IDictionary<String, JET_COLUMNID>
A dictionary mapping column names to column IDs.