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

An SqlExpression that will cast a value retrieved by the evaluation of another expression into a given SQL data type. More...

Inheritance diagram for Deveel.Data.Sql.Expressions.SqlCastExpression:
Deveel.Data.Sql.Expressions.SqlExpression Deveel.Data.Serialization.ISerializable

Public Member Functions

 SqlCastExpression (SqlExpression value, SqlType sqlType)
 Constructs the expression with the a given value to be converted and the conversion type. More...
 
- Public Member Functions inherited from Deveel.Data.Sql.Expressions.SqlExpression
virtual SqlExpression Prepare (IExpressionPreparer preparer)
 
virtual SqlExpression Accept (SqlExpressionVisitor visitor)
 
virtual SqlExpression Evaluate (EvaluateContext context)
 When overridden by a derived class, this method evaluates the expression within the provided context. More...
 
SqlExpression Evaluate ()
 Statically evaluates the expression, outside any context. More...
 
SqlExpression Evaluate (IRequest context, IVariableResolver variables)
 
SqlExpression Evaluate (IRequest context, IVariableResolver variables, IGroupResolver group)
 
override string ToString ()
 

Protected Member Functions

override void GetData (SerializeData data)
 

Properties

SqlExpression Value [get, private set]
 Gets the expression whose evaluated value will be converted. More...
 
SqlType SqlType [get, private set]
 Gets the destination type of the conversion More...
 
override SqlExpressionType ExpressionType [get]
 
override bool CanEvaluate [get]
 
- Properties inherited from Deveel.Data.Sql.Expressions.SqlExpression
abstract SqlExpressionType ExpressionType [get]
 Gets the type code of this SQL expression. More...
 
virtual bool CanEvaluate [get]
 Gets a value indicating whether the expression can be evaluated to another simpler one. More...
 
int EvaluatePrecedence [get, set]
 

Private Member Functions

 SqlCastExpression (ObjectData data)
 

Additional Inherited Members

- Static Public Member Functions inherited from Deveel.Data.Sql.Expressions.SqlExpression
static SqlExpression Parse (string s)
 Parses the given SQL string to an expression that can be evaluated. More...
 
static SqlExpression Parse (string s, ISystemContext context)
 Parses the given SQL string to an expression that can be evaluated. More...
 
static SqlConstantExpression Constant (object value)
 
static SqlConstantExpression Constant (DataObject value)
 
static SqlCastExpression Cast (SqlExpression value, SqlType destType)
 
static SqlFunctionCallExpression FunctionCall (ObjectName functionName)
 
static SqlFunctionCallExpression FunctionCall (ObjectName functionName, SqlExpression[] args)
 
static SqlFunctionCallExpression FunctionCall (string functionName)
 
static SqlFunctionCallExpression FunctionCall (string functionName, SqlExpression[] args)
 
static SqlReferenceExpression Reference (ObjectName objectName)
 
static SqlVariableReferenceExpression VariableReference (string varName)
 
static SqlConditionalExpression Conditional (SqlExpression testExpression, SqlExpression ifTrue)
 
static SqlConditionalExpression Conditional (SqlExpression testExpression, SqlExpression ifTrue, SqlExpression ifFalse)
 
static SqlBinaryExpression Binary (SqlExpression left, SqlExpressionType expressionType, SqlExpression right)
 
static SqlBinaryExpression Equal (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression NotEqual (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Is (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression IsNot (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression SmallerOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression GreaterOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression SmallerThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression GreaterThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Like (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression NotLike (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression And (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Or (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression XOr (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Add (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Subtract (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Multiply (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Divide (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Modulo (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression Any (SqlExpression left, SqlExpressionType anyType, SqlExpression right)
 
static SqlBinaryExpression AnyEqual (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AnyNotEqual (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AnyGreaterThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AnyGreaterOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AnySmallerThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AnySmallerOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression All (SqlExpression left, SqlExpressionType allType, SqlExpression right)
 
static SqlBinaryExpression AllEqual (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AllNotEqual (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AllGreaterThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AllGreaterOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AllSmallerThan (SqlExpression left, SqlExpression right)
 
static SqlBinaryExpression AllSmallerOrEqualThan (SqlExpression left, SqlExpression right)
 
static SqlUnaryExpression Unary (SqlExpressionType expressionType, SqlExpression operand)
 
static SqlUnaryExpression Not (SqlExpression operand)
 
static SqlUnaryExpression Negate (SqlExpression operand)
 
static SqlUnaryExpression UnaryPlus (SqlExpression operand)
 
static SqlAssignExpression Assign (SqlExpression reference, SqlExpression valueExpression)
 
static SqlTupleExpression Tuple (SqlExpression[] expressions)
 
static SqlTupleExpression Tuple (SqlExpression expr1, SqlExpression exp2)
 
static SqlTupleExpression Tuple (SqlExpression expr1, SqlExpression expr2, SqlExpression expr3)
 
- Package Functions inherited from Deveel.Data.Sql.Expressions.SqlExpression
 SqlExpression ()
 Internally constructs the SQL expression, avoiding external implementations to be allowed to inherit this class. More...
 
 SqlExpression (ObjectData data)
 
- Static Package Functions inherited from Deveel.Data.Sql.Expressions.SqlExpression
static void Serialize (SqlExpression expression, BinaryWriter writer)
 
static SqlExpression Deserialize (BinaryReader reader)
 

Detailed Description

An SqlExpression that will cast a value retrieved by the evaluation of another expression into a given SQL data type.

Definition at line 28 of file SqlCastExpression.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Expressions.SqlCastExpression.SqlCastExpression ( SqlExpression  value,
SqlType  sqlType 
)
inline

Constructs the expression with the a given value to be converted and the conversion type.

Parameters
valueThe expression whose value resulted from its evaluation will be casted to the given type.
sqlTypeThe destination type this expression will convert to.

Definition at line 37 of file SqlCastExpression.cs.

37  {
38  SqlType = sqlType;
39  Value = value;
40  }
SqlExpression Value
Gets the expression whose evaluated value will be converted.
Defines the properties of a specific SQL Type and handles the values compatible.
Definition: SqlType.cs:33
Deveel.Data.Sql.Expressions.SqlCastExpression.SqlCastExpression ( ObjectData  data)
inlineprivate

Definition at line 42 of file SqlCastExpression.cs.

42  {
43  Value = data.GetValue<SqlExpression>("Value");
44  SqlType = data.GetValue<SqlType>("Type");
45  }
SqlExpression Value
Gets the expression whose evaluated value will be converted.
SqlExpression()
Internally constructs the SQL expression, avoiding external implementations to be allowed to inherit ...
Defines the properties of a specific SQL Type and handles the values compatible.
Definition: SqlType.cs:33

Member Function Documentation

override void Deveel.Data.Sql.Expressions.SqlCastExpression.GetData ( SerializeData  data)
inlineprotectedvirtual

Reimplemented from Deveel.Data.Sql.Expressions.SqlExpression.

Definition at line 69 of file SqlCastExpression.cs.

69  {
70  data.SetValue("Value", Value);
71  data.SetValue("Type", SqlType);
72  }
SqlExpression Value
Gets the expression whose evaluated value will be converted.
void SetValue(string key, Type type, object value)
Defines the properties of a specific SQL Type and handles the values compatible.
Definition: SqlType.cs:33

Property Documentation

override bool Deveel.Data.Sql.Expressions.SqlCastExpression.CanEvaluate
get

Definition at line 65 of file SqlCastExpression.cs.

override SqlExpressionType Deveel.Data.Sql.Expressions.SqlCastExpression.ExpressionType
get

Definition at line 60 of file SqlCastExpression.cs.

SqlType Deveel.Data.Sql.Expressions.SqlCastExpression.SqlType
getprivate set

Gets the destination type of the conversion

See also
SqlType.CastTo, SqlType.CanCastTo

Definition at line 57 of file SqlCastExpression.cs.

SqlExpression Deveel.Data.Sql.Expressions.SqlCastExpression.Value
getprivate set

Gets the expression whose evaluated value will be converted.

Definition at line 50 of file SqlCastExpression.cs.


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