DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Transactions.TableAccessEvent Class Reference

A table was accessed during the transaction. More...

Inheritance diagram for Deveel.Data.Transactions.TableAccessEvent:
Deveel.Data.Transactions.ITableEvent Deveel.Data.Transactions.ITransactionEvent

Public Member Functions

 TableAccessEvent (int tableId, ObjectName tableName)
 Constructs the event object for the table identified by the unique number given and its unique name. More...
 

Properties

int TableId [get, private set]
 
ObjectName TableName [get, private set]
 Gets the database table unique name. More...
 
- Properties inherited from Deveel.Data.Transactions.ITableEvent
int TableId [get]
 Gets the unique identifier of the table within the system. More...
 

Detailed Description

A table was accessed during the transaction.

Definition at line 25 of file TableAccessEvent.cs.

Constructor & Destructor Documentation

Deveel.Data.Transactions.TableAccessEvent.TableAccessEvent ( int  tableId,
ObjectName  tableName 
)
inline

Constructs the event object for the table identified by the unique number given and its unique name.

Parameters
tableIdThe table unique identifier number.
tableNameThe unique name of the table accessed.

Definition at line 32 of file TableAccessEvent.cs.

32  {
33  TableId = tableId;
34  TableName = tableName;
35  }
ObjectName TableName
Gets the database table unique name.

Property Documentation

int Deveel.Data.Transactions.TableAccessEvent.TableId
getprivate set

Definition at line 37 of file TableAccessEvent.cs.

ObjectName Deveel.Data.Transactions.TableAccessEvent.TableName
getprivate set

Gets the database table unique name.

Definition at line 42 of file TableAccessEvent.cs.


The documentation for this class was generated from the following file: