22 namespace Deveel.Data.Sql.Variables {
25 if (
String.IsNullOrEmpty(variableName))
26 throw new ArgumentNullException(
"variableName");
28 throw new ArgumentNullException(
"type");
30 VariableName = variableName;
32 IsConstant = isConstant;
35 public string VariableName {
get;
private set; }
39 public bool IsConstant {
get;
private set; }
41 public bool IsNotNull {
get; set; }
A long string in the system.
Describes the name of an object within a database.
A user-defined TYPE that holds complex objects in a database column.
Defines the properties of a specific SQL Type and handles the values compatible.
Defines the base class for instances that represent SQL expression tree nodes.
DbObjectType
The kind of objects that can be handled by a database system and its managers
VariableInfo(string variableName, SqlType type, bool isConstant)