|
static Variable | DeclareVariable (this IQuery query, VariableInfo variableInfo) |
|
static void | DropVariable (this IQuery query, string variableName) |
|
static Variable | SetVariable (this IQuery query, string variableName, SqlExpression value) |
|
static Variable | FindVariable (this IQuery query, string variableName) |
|
static Variable | DeclareVariable (this IQuery query, string variableName, SqlType variableType) |
|
static Variable | DeclareVariable (this IQuery query, string variableName, SqlType variableType, bool constant) |
|
Definition at line 23 of file QueryExtensions.cs.
Definition at line 24 of file QueryExtensions.cs.
25 return query.Context.DeclareVariable(variableInfo);
static Variable Deveel.Data.Sql.Variables.QueryExtensions.DeclareVariable |
( |
this IQuery |
query, |
|
|
string |
variableName, |
|
|
SqlType |
variableType |
|
) |
| |
|
inlinestatic |
Definition at line 40 of file QueryExtensions.cs.
static Variable DeclareVariable(this IQuery query, VariableInfo variableInfo)
static Variable Deveel.Data.Sql.Variables.QueryExtensions.DeclareVariable |
( |
this IQuery |
query, |
|
|
string |
variableName, |
|
|
SqlType |
variableType, |
|
|
bool |
constant |
|
) |
| |
|
inlinestatic |
Definition at line 44 of file QueryExtensions.cs.
45 return query.DeclareVariable(
new VariableInfo(variableName, variableType, constant));
static void Deveel.Data.Sql.Variables.QueryExtensions.DropVariable |
( |
this IQuery |
query, |
|
|
string |
variableName |
|
) |
| |
|
inlinestatic |
static Variable Deveel.Data.Sql.Variables.QueryExtensions.FindVariable |
( |
this IQuery |
query, |
|
|
string |
variableName |
|
) |
| |
|
inlinestatic |
Definition at line 36 of file QueryExtensions.cs.
37 return query.Context.FindVariable(variableName);
Definition at line 32 of file QueryExtensions.cs.
33 return query.Context.SetVariable(variableName, value);
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Sql.Variables/QueryExtensions.cs