DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Protected Member Functions | Package Functions | Properties | Private Member Functions | Private Attributes | List of all members
Deveel.Data.Sql.Expressions.SqlBinaryExpression Class Reference
Inheritance diagram for Deveel.Data.Sql.Expressions.SqlBinaryExpression:
Deveel.Data.Sql.Expressions.SqlExpression Deveel.Data.Serialization.ISerializable

Protected Member Functions

override void GetData (SerializeData data)
 

Package Functions

 SqlBinaryExpression (SqlExpression left, SqlExpressionType expressionType, SqlExpression right)
 
- 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)
 

Properties

SqlExpression Left [get, private set]
 
SqlExpression Right [get, private set]
 
override bool CanEvaluate [get]
 
override SqlExpressionType ExpressionType [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

 SqlBinaryExpression (ObjectData data)
 

Private Attributes

readonly SqlExpressionType expressionType
 

Additional Inherited Members

- 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 ()
 
- 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)
 
- Static Package Functions inherited from Deveel.Data.Sql.Expressions.SqlExpression
static void Serialize (SqlExpression expression, BinaryWriter writer)
 
static SqlExpression Deserialize (BinaryReader reader)
 

Detailed Description

Definition at line 23 of file SqlBinaryExpression.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Expressions.SqlBinaryExpression.SqlBinaryExpression ( SqlExpression  left,
SqlExpressionType  expressionType,
SqlExpression  right 
)
inlinepackage

Definition at line 26 of file SqlBinaryExpression.cs.

26  {
27  if (left == null)
28  throw new ArgumentNullException("left");
29  if (right == null)
30  throw new ArgumentNullException("right");
31 
33 
34  Left = left;
35  Right = right;
36  }
Deveel.Data.Sql.Expressions.SqlBinaryExpression.SqlBinaryExpression ( ObjectData  data)
inlineprivate

Definition at line 38 of file SqlBinaryExpression.cs.

39  : base(data) {
40  Left = data.GetValue<SqlExpression>("Left");
41  Right = data.GetValue<SqlExpression>("Right");
42  expressionType = (SqlExpressionType) data.GetInt32("ExpressionType");
43  }
SqlExpression()
Internally constructs the SQL expression, avoiding external implementations to be allowed to inherit ...
SqlExpressionType
All the possible type of SqlExpression supported

Member Function Documentation

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

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

Definition at line 57 of file SqlBinaryExpression.cs.

57  {
58  data.SetValue("Left", Left);
59  data.SetValue("Right", Right);
60  data.SetValue("ExpressionType", (int)expressionType);
61  }
void SetValue(string key, Type type, object value)

Member Data Documentation

readonly SqlExpressionType Deveel.Data.Sql.Expressions.SqlBinaryExpression.expressionType
private

Definition at line 24 of file SqlBinaryExpression.cs.

Property Documentation

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

Definition at line 49 of file SqlBinaryExpression.cs.

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

Definition at line 53 of file SqlBinaryExpression.cs.

SqlExpression Deveel.Data.Sql.Expressions.SqlBinaryExpression.Left
getprivate set

Definition at line 45 of file SqlBinaryExpression.cs.

SqlExpression Deveel.Data.Sql.Expressions.SqlBinaryExpression.Right
getprivate set

Definition at line 47 of file SqlBinaryExpression.cs.


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