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

A new table was created during a transaction. More...

Inheritance diagram for Deveel.Data.Transactions.TableCreatedEvent:
Deveel.Data.Transactions.ObjectCreatedEvent Deveel.Data.Transactions.ITableEvent Deveel.Data.Transactions.ITransactionEvent Deveel.Data.Transactions.ITransactionEvent

Public Member Functions

 TableCreatedEvent (int tableId, ObjectName tableName)
 Constructs the event object with the given table name and unique identification number. More...
 
- Public Member Functions inherited from Deveel.Data.Transactions.ObjectCreatedEvent
 ObjectCreatedEvent (ObjectName objectName, DbObjectType objectType)
 Constructs a new event with the given object name and type. More...
 

Properties

int TableId [get, private set]
 
- Properties inherited from Deveel.Data.Transactions.ObjectCreatedEvent
ObjectName ObjectName [get, private set]
 Gets the ObjectName that uniquely identify the object created. More...
 
DbObjectType ObjectType [get, private set]
 Gets the type of the object created. 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 new table was created during a transaction.

Definition at line 25 of file TableCreatedEvent.cs.

Constructor & Destructor Documentation

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

Constructs the event object with the given table name and unique identification number.

Parameters
tableIdThe unique identification number of the table created.
tableNameThe unique name of the table created.

Definition at line 32 of file TableCreatedEvent.cs.

33  : base(tableName, DbObjectType.Table) {
34  TableId = tableId;
35  }
DbObjectType
The kind of objects that can be handled by a database system and its managers
Definition: DbObjectType.cs:27

Property Documentation

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

Definition at line 37 of file TableCreatedEvent.cs.


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