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.
Returns the names of the tables in the database.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Function GetTableNames ( _
sesid As JET_SESID, _
dbid As JET_DBID _
) As IEnumerable(Of String)
'Usage
Dim sesid As JET_SESID
Dim dbid As JET_DBID
Dim returnValue As IEnumerable(Of String)
returnValue = Api.GetTableNames(sesid, _
dbid)
public static IEnumerable<string> GetTableNames(
JET_SESID sesid,
JET_DBID dbid
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe session to use.
dbid
Type: Microsoft.Isam.Esent.Interop.JET_DBIDThe database containing the table.
Return value
Type: System.Collections.Generic.IEnumerable<String>
An iterator over the names of the tables in the database.