Examples of OracleReferencesConstaint


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

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

            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
Copyright © 2018 www.massapi.com. 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.