001package gudusoft.gsqlparser.stmt.db2;
002
003import gudusoft.gsqlparser.*;
004
005public class TDb2DynamicCompoundStatement extends TCustomDb2Stmt {
006     public TDb2DynamicCompoundStatement (EDbVendor dbvendor){
007        super(dbvendor);
008        sqlstatementtype = ESqlStatementType.sstdb2dynamiccompoundstatement ;
009        }
010
011    void buildsql() {
012    }
013
014    void clear() {
015    }
016
017    String getasprettytext() {
018        return "";
019    }
020
021    void iterate(TVisitorAbs pvisitor) {
022    }
023
024    int doparsestatement(TCustomSqlStatement psql) {
025        return 0;
026    }
027
028}