Inheritance: SqlStatement, IPlSqlStatement
コード例 #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));
 }
コード例 #2
0
 protected override SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     // TODO: here we need to decompose the query and inject the INTO clause
     return base.VisitSelectInto(statement);
 }
コード例 #3
0
ファイル: StatementVisitor.cs プロジェクト: deveel/deveeldb
 protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     return new SelectIntoStatement(statement.QueryExpression, statement.Reference);
 }
コード例 #4
0
 protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement)
 {
     return(new SelectIntoStatement(statement.QueryExpression, statement.Reference));
 }