Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Iterates over all the columns in the table, returning information about each one.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Function GetTableColumns ( _
sesid As JET_SESID, _
tableid As JET_TABLEID _
) As IEnumerable(Of ColumnInfo)
'Usage
Dim sesid As JET_SESID
Dim tableid As JET_TABLEID
Dim returnValue As IEnumerable(Of ColumnInfo)
returnValue = Api.GetTableColumns(sesid, _
tableid)
public static IEnumerable<ColumnInfo> GetTableColumns(
JET_SESID sesid,
JET_TABLEID tableid
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe session to use.
tableid
Type: Microsoft.Isam.Esent.Interop.JET_TABLEIDThe table to retrieve column information for.
Return value
Type: System.Collections.Generic.IEnumerable<ColumnInfo>
An iterator over ColumnInfo for each column in the table.