DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | Private Member Functions | List of all members
Deveel.Data.Sql.Statements.DropDefaultAction Class Reference
Inheritance diagram for Deveel.Data.Sql.Statements.DropDefaultAction:
Deveel.Data.Sql.Statements.IAlterTableAction Deveel.Data.Serialization.ISerializable

Public Member Functions

 DropDefaultAction (string columnName)
 

Properties

string ColumnName [get, private set]
 
AlterTableActionType IAlterTableAction. ActionType [get]
 
- Properties inherited from Deveel.Data.Sql.Statements.IAlterTableAction
AlterTableActionType ActionType [get]
 

Private Member Functions

 DropDefaultAction (ObjectData data)
 
void ISerializable. GetData (SerializeData data)
 

Detailed Description

Definition at line 23 of file DropDefaultAction.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Statements.DropDefaultAction.DropDefaultAction ( string  columnName)
inline

Definition at line 24 of file DropDefaultAction.cs.

24  {
25  ColumnName = columnName;
26  }
Deveel.Data.Sql.Statements.DropDefaultAction.DropDefaultAction ( ObjectData  data)
inlineprivate

Definition at line 28 of file DropDefaultAction.cs.

28  {
29  ColumnName = data.GetString("Column");
30  }

Member Function Documentation

void ISerializable. Deveel.Data.Sql.Statements.DropDefaultAction.GetData ( SerializeData  data)
inlineprivate

Implements Deveel.Data.Serialization.ISerializable.

Definition at line 38 of file DropDefaultAction.cs.

38  {
39  data.SetValue("Column", ColumnName);
40  }
void SetValue(string key, Type type, object value)

Property Documentation

AlterTableActionType IAlterTableAction. Deveel.Data.Sql.Statements.DropDefaultAction.ActionType
getprivate

Definition at line 34 of file DropDefaultAction.cs.

string Deveel.Data.Sql.Statements.DropDefaultAction.ColumnName
getprivate set

Definition at line 32 of file DropDefaultAction.cs.


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