Package org.apache.derby.impl.sql.compile

Examples of org.apache.derby.impl.sql.compile.RoutineDesignator


/*
* <A NAME="routineRevokeStatement">routineRevokeStatement</A>
*/
  final public StatementNode routineRevokeStatement() throws ParseException, StandardException {
    List grantees;
    RoutineDesignator routine = null;
    jj_consume_token(EXECUTE);
    jj_consume_token(ON);
    routine = routineDesignator();
    jj_consume_token(FROM);
    grantees = granteeList();
View Full Code Here

TOP

Related Classes of org.apache.derby.impl.sql.compile.RoutineDesignator

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.