Método Api.TryOpenTable
Intente abrir una tabla.
Espacio de nombres:Microsoft.Isam.Esent.Interop
Ensamblaje: Microsoft.Isam.Esent.Interop (en Microsoft.Isam.Esent.Interop.dll)
Sintaxis
'Declaration
Public Shared Function TryOpenTable ( _
sesid As JET_SESID, _
dbid As JET_DBID, _
tablename As String, _
grbit As OpenTableGrbit, _
<OutAttribute> ByRef tableid As JET_TABLEID _
) As Boolean
'Usage
Dim sesid As JET_SESID
Dim dbid As JET_DBID
Dim tablename As String
Dim grbit As OpenTableGrbit
Dim tableid As JET_TABLEID
Dim returnValue As Boolean
returnValue = Api.TryOpenTable(sesid, _
dbid, tablename, grbit, tableid)
public static bool TryOpenTable(
JET_SESID sesid,
JET_DBID dbid,
string tablename,
OpenTableGrbit grbit,
out JET_TABLEID tableid
)
Parámetros
sesid
Tipo: Microsoft.Isam.Esent.Interop.JET_SESIDSesión que se va a usar.
dbid
Tipo: Microsoft.Isam.Esent.Interop.JET_DBIDBase de datos en la que se va a buscar la tabla.
tablename
Tipo: System.StringNombre de la tabla.
grbit
Tipo: Microsoft.Isam.Esent.Interop.OpenTableGrbitOpciones de apertura de tabla.
tableid
Tipo: Microsoft.Isam.Esent.Interop.JET_TABLEIDDevuelve el tableid abierto.
Valor devuelto
Tipo: System.Boolean
True si se abrió la tabla, false si la tabla no existe.