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, _
dbid As JET_DBID, _
tablename As String _
) As IEnumerable(Of ColumnInfo)
'Usage
Dim sesid As JET_SESID
Dim dbid As JET_DBID
Dim tablename As String
Dim returnValue As IEnumerable(Of ColumnInfo)
returnValue = Api.GetTableColumns(sesid, _
dbid, tablename)
public static IEnumerable<ColumnInfo> GetTableColumns(
JET_SESID sesid,
JET_DBID dbid,
string tablename
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe session to use.
dbid
Type: Microsoft.Isam.Esent.Interop.JET_DBIDThe database containing the table.
tablename
Type: System.StringThe name of the table.
Return value
Type: System.Collections.Generic.IEnumerable<ColumnInfo>
An iterator over ColumnInfo for each column in the table.