DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
PlSqlFunction.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Routines {
4  public sealed class PlSqlFunction : Function {
5  public PlSqlFunction(FunctionInfo functionInfo)
6  : base(functionInfo) {
7  }
8 
9  public Block Body { get; set; }
10 
11  public override ExecuteResult Execute(ExecuteContext context) {
12  if (Body == null)
13  throw new InvalidOperationException();
14 
15  throw new NotImplementedException();
16  }
17  }
18 }
override ExecuteResult Execute(ExecuteContext context)
A system routine that returns a value at the end of its execution.
Definition: Function.cs:31
PlSqlFunction(FunctionInfo functionInfo)
Definition: PlSqlFunction.cs:5
The function signature information that are used to resolve a function within a context.
Definition: FunctionInfo.cs:30