DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
FetchStatement.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Sql.Cursors;
5 
6 namespace Deveel.Data.Sql.Statements {
8  public FetchStatement(string cursorName, FetchDirection direction) {
9  CursorName = cursorName;
10  Direction = direction;
11  }
12 
13  public string CursorName { get; private set; }
14 
15  public FetchDirection Direction { get; private set; }
16 
17  public SqlExpression PositionExpression { get; set; }
18 
19  public SqlExpression IntoReference { get; set; }
20 
22  throw new NotImplementedException();
23  }
24 
26  throw new NotImplementedException();
27  }
28  }
29 }
FetchStatement(string cursorName, FetchDirection direction)
Represents the foundation class of SQL statements to be executed.
Definition: SqlStatement.cs:32
An interface used to prepare a SqlExpression object.
object Prepare(IExpressionPreparer preparer)
Converts the underlying value of this instance into an object that can be evaluated by an expression...
Defines the base class for instances that represent SQL expression tree nodes.
A contract for objects that participate to a SqlExpression.Prepare phase of an expression evaluation...
Definition: IPreparable.cs:30