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