DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
CreateSequenceStatement.cs
Go to the documentation of this file.
1 using System;
2 
4 
5 namespace Deveel.Data.Sql.Statements {
7  public CreateSequenceStatement(ObjectName sequenceName) {
8  if (sequenceName == null)
9  throw new ArgumentNullException("sequenceName");
10 
11  SequenceName = sequenceName;
12  }
13 
14  public ObjectName SequenceName { get; private set; }
15 
16  public SqlExpression StartWith { get; set; }
17 
18  public SqlExpression IncrementBy { get; set; }
19 
20  public SqlExpression MinValue { get; set; }
21 
22  public SqlExpression MaxValue { get; set; }
23 
24  public SqlExpression Cache { get; set; }
25 
26  public bool Cycle { get; set; }
27 
29  throw new NotImplementedException();
30  }
31 
33  throw new NotImplementedException();
34  }
35  }
36 }
Describes the name of an object within a database.
Definition: ObjectName.cs:44
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