Definition at line 202 of file SystemFunctionsProvider.cs.
Definition at line 203 of file SystemFunctionsProvider.cs.
204 var value = context.EvaluatedArguments[0];
205 var typeArg = context.EvaluatedArguments[1];
206 var typeString = typeArg.AsVarChar().Value.ToString();
207 var type =
SqlType.
Parse(context.Request.Context, typeString);
209 return context.Result(SystemFunctions.Cast(value, type));
Defines the properties of a specific SQL Type and handles the values compatible.
static SqlType Parse(string s)
Parses a SQL formatted string that defines a data-type into a constructed SqlType object equivalent...
static SqlType Deveel.Data.Routines.SystemFunctionsProvider.Cast.ReturnType |
( |
InvokeContext |
context | ) |
|
|
inlinestatic |
Definition at line 212 of file SystemFunctionsProvider.cs.
213 var typeArg = context.EvaluatedArguments[1];
214 var typeString = typeArg.AsVarChar().Value.ToString();
215 return SqlType.
Parse(context.Request.Context, typeString);
Defines the properties of a specific SQL Type and handles the values compatible.
static SqlType Parse(string s)
Parses a SQL formatted string that defines a data-type into a constructed SqlType object equivalent...
The documentation for this class was generated from the following file: