DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Sql.Variables.VariableInfo Class Reference
Inheritance diagram for Deveel.Data.Sql.Variables.VariableInfo:
Deveel.Data.Sql.IObjectInfo

Public Member Functions

 VariableInfo (string variableName, SqlType type, bool isConstant)
 

Properties

string VariableName [get, private set]
 
SqlType Type [get, private set]
 
bool IsConstant [get, private set]
 
bool IsNotNull [get, set]
 
SqlExpression DefaultExpression [get, set]
 
DbObjectType IObjectInfo. ObjectType [get]
 
ObjectName IObjectInfo. FullName [get]
 
- Properties inherited from Deveel.Data.Sql.IObjectInfo
DbObjectType ObjectType [get]
 
ObjectName FullName [get]
 

Detailed Description

Definition at line 23 of file VariableInfo.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Variables.VariableInfo.VariableInfo ( string  variableName,
SqlType  type,
bool  isConstant 
)
inline

Definition at line 24 of file VariableInfo.cs.

24  {
25  if (String.IsNullOrEmpty(variableName))
26  throw new ArgumentNullException("variableName");
27  if (type == null)
28  throw new ArgumentNullException("type");
29 
30  VariableName = variableName;
31  Type = type;
32  IsConstant = isConstant;
33  }
A long string in the system.

Property Documentation

SqlExpression Deveel.Data.Sql.Variables.VariableInfo.DefaultExpression
getset

Definition at line 43 of file VariableInfo.cs.

ObjectName IObjectInfo. Deveel.Data.Sql.Variables.VariableInfo.FullName
getprivate

Definition at line 49 of file VariableInfo.cs.

bool Deveel.Data.Sql.Variables.VariableInfo.IsConstant
getprivate set

Definition at line 39 of file VariableInfo.cs.

bool Deveel.Data.Sql.Variables.VariableInfo.IsNotNull
getset

Definition at line 41 of file VariableInfo.cs.

DbObjectType IObjectInfo. Deveel.Data.Sql.Variables.VariableInfo.ObjectType
getprivate

Definition at line 45 of file VariableInfo.cs.

SqlType Deveel.Data.Sql.Variables.VariableInfo.Type
getprivate set

Definition at line 37 of file VariableInfo.cs.

string Deveel.Data.Sql.Variables.VariableInfo.VariableName
getprivate set

Definition at line 35 of file VariableInfo.cs.


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