Api.TryOpenTable 方法
尝试打开一个表。
Namespace:Microsoft.Isam.Esent.Interop
装配: Microsoft.Isam.Esent.Interop.dll) 中的 Microsoft.Isam.Esent.Interop (
语法
'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
)
parameters
sesid
类型: Microsoft.Isam.Esent.Interop.JET_SESID要使用的会话。
dbid
类型: Microsoft.Isam.Esent.Interop.JET_DBID要查找表的数据库。
tablename
类型: System.String表的名称。
grbit
类型: Microsoft.Isam.Esent.Interop.OpenTableGrbit表打开选项。
tableid
类型: Microsoft.Isam.Esent.Interop.JET_TABLEID返回打开的 tableid。
返回值
类型: System.Boolean
如果表已打开,则为 True;如果表不存在,则为 false。