Package com.alibaba.druid.sql.visitor

Examples of com.alibaba.druid.sql.visitor.SQLASTVisitorAdapter


import com.alibaba.druid.sql.visitor.SQLASTVisitorAdapter;

public class SQLASTVisitorAdapterTest extends TestCase {

    public void test_adapter() throws Exception {
        SQLASTVisitorAdapter adapter = new SQLASTVisitorAdapter();
        new SQLBinaryOpExpr().accept(adapter);
        new SQLInListExpr().accept(adapter);
        new SQLSelectQueryBlock().accept(adapter);
        new SQLDropTableStatement().accept(adapter);
        new SQLCreateTableStatement().accept(adapter);
View Full Code Here

TOP

Related Classes of com.alibaba.druid.sql.visitor.SQLASTVisitorAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.