Package com.alibaba.druid.sql.dialect.oracle.ast.stmt

Examples of com.alibaba.druid.sql.dialect.oracle.ast.stmt.OracleReferencesConstaint


            throw new ParserException("TODO");
        }

        if (identifierEquals("References")) {
            lexer.nextToken();
            OracleReferencesConstaint ref = new OracleReferencesConstaint();
            ref.setRefObject(this.exprParser.name());

            if (lexer.token() == (Token.LPAREN)) {
                lexer.nextToken();
                this.exprParser.names(ref.getRefColumns());
                accept(Token.RPAREN);
            }

            if (lexer.token() == (Token.ON)) {
                lexer.nextToken();
View Full Code Here


            throw new ParserException("TODO");
        }

        if (lexer.token() == (Token.REFERENCES)) {
            lexer.nextToken();
            OracleReferencesConstaint ref = new OracleReferencesConstaint();
            ref.setRefObject(this.exprParser.name());

            if (lexer.token() == (Token.LPAREN)) {
                lexer.nextToken();
                this.exprParser.names(ref.getRefColumns());
                accept(Token.RPAREN);
            }

            if (lexer.token() == (Token.ON)) {
                lexer.nextToken();
View Full Code Here

TOP

Related Classes of com.alibaba.druid.sql.dialect.oracle.ast.stmt.OracleReferencesConstaint

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.