C# Class Microsoft.Isam.Esent.Interop.Table

A class that encapsulates a JET_TABLEID in a disposable object. This opens an existing table. To create a table use the JetCreateTable method.
Inheritance: Microsoft.Isam.Esent.Interop.EsentResource
Afficher le fichier Open project: ayende/managed-esent Class Usage Examples

Méthodes publiques

Méthode Description
Close ( ) : void

Close the table.

Table ( JET_SESID sesid, JET_DBID dbid, string name, OpenTableGrbit grbit )

Initializes a new instance of the Table class. The table is opened from the given database.

Méthodes protégées

Méthode Description
ReleaseResource ( ) : void

Free the underlying JET_TABLEID.

Method Details

Close() public méthode

Close the table.
public Close ( ) : void
Résultat void

ReleaseResource() protected méthode

Free the underlying JET_TABLEID.
protected ReleaseResource ( ) : void
Résultat void

Table() public méthode

Initializes a new instance of the Table class. The table is opened from the given database.
public Table ( JET_SESID sesid, JET_DBID dbid, string name, OpenTableGrbit grbit )
sesid JET_SESID The session to use.
dbid JET_DBID The database to open the table in.
name string The name of the table.
grbit OpenTableGrbit JetOpenTable options.