Inheritance: SqlStatement, IPlSqlStatement
Exemple #1
0
 protected override SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     // TODO: here we need to decompose the query and inject the INTO clause
     return(base.VisitSelectInto(statement));
 }
 protected override SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     // TODO: here we need to decompose the query and inject the INTO clause
     return base.VisitSelectInto(statement);
 }
Exemple #3
0
 protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     return new SelectIntoStatement(statement.QueryExpression, statement.Reference);
 }
Exemple #4
0
 protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     return(new SelectIntoStatement(statement.QueryExpression, statement.Reference));
 }