Exemplo n.º 1
0
 public InsertStatement() : base()
 {
     ColumnOfValues = new TokenList <Expression>(this);
     Values         = new TokenList <SubExpression>(this);
 }
Exemplo n.º 2
0
 public OneTableStatement() : base()
 {
     ReturningColumns = new TokenList <ColumnClause>(this);
 }
Exemplo n.º 3
0
 public UpdateStatement() : base()
 {
     Set = new TokenList <SetClause>(this);
 }
Exemplo n.º 4
0
 public CaseExpr()
 {
     ListWhenThen = new TokenList <WhenThen>(this);
 }