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

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


/*
* <A NAME="selectList">selectList</A>
*/
  final public ResultColumnList selectList() throws ParseException, StandardException {
        ResultColumn    allResultColumn;
        ResultColumnList        resultColumns = (ResultColumnList) nodeFactory.getNode(
                                                                        C_NodeTypes.RESULT_COLUMN_LIST,
                                                                        getContextManager());
    switch (jj_nt.kind) {
    case ASTERISK:
View Full Code Here


/*
* <A NAME="selectSublist">selectSublist</A>
*/
  final public void selectSublist(ResultColumnList resultColumns) throws ParseException, StandardException {
        ResultColumn    resultColumn;
        ResultColumn    allResultColumn;
        TableName       tableName;
    if (getToken(2).kind == PERIOD &&
                            (
                                    getToken(3).kind == ASTERISK ||
                                    (getToken(4).kind == PERIOD && getToken(5).kind == ASTERISK)
View Full Code Here

/*
* <A NAME="setClause">setClause</A>
*/
  final public void setClause(ResultColumnList columnList) throws ParseException, StandardException {
        ResultColumn resultColumn;
        ColumnReference  columnName;
        ValueNode        valueNode;
    /* identifier() used to be objectColumn() */
            /*
        SQL92 only wants identifiers here (column names)
View Full Code Here

/*
* <A NAME="columnQualifiedNameItem">columnQualifiedNameItem</A>
*/
  final public void columnQualifiedNameItem(ResultColumnList columnList) throws ParseException, StandardException {
        ColumnReference         columnRef;
        ResultColumn    resultColumn;
    /*
        SQL92 only wants identifiers here (column names)
        but JBuilder expects table.column, so we allow the
        general form.
       */
 
View Full Code Here

/*
* <A NAME="columnNameItem">columnNameItem</A>
*/
  final public void columnNameItem(ResultColumnList columnList) throws ParseException, StandardException {
        String          columnName;
        ResultColumn    resultColumn;
    /* identifier() used to be columnName() */
            columnName = identifier(Limits.MAX_IDENTIFIER_LENGTH, true);
                /*
    ** Store the column names for the result columns in the
    ** result column list.  We don't know yet what valueNodes
View Full Code Here

/*
* <A NAME="selectList">selectList</A>
*/
  final public ResultColumnList selectList() throws ParseException, StandardException {
        ResultColumn    allResultColumn;
        ResultColumnList        resultColumns = (ResultColumnList) nodeFactory.getNode(
                                                                        C_NodeTypes.RESULT_COLUMN_LIST,
                                                                        getContextManager());
    switch (jj_nt.kind) {
    case ASTERISK:
View Full Code Here

/*
* <A NAME="selectSublist">selectSublist</A>
*/
  final public void selectSublist(ResultColumnList resultColumns) throws ParseException, StandardException {
        ResultColumn    resultColumn;
        ResultColumn    allResultColumn;
        TableName       tableName;
    if (getToken(2).kind == PERIOD &&
                            (
                                    getToken(3).kind == ASTERISK ||
                                    (getToken(4).kind == PERIOD && getToken(5).kind == ASTERISK)
View Full Code Here

/*
* <A NAME="setClause">setClause</A>
*/
  final public void setClause(ResultColumnList columnList) throws ParseException, StandardException {
        ResultColumn resultColumn;
        ColumnReference  columnName;
        ValueNode        valueNode;
    /* identifier() used to be objectColumn() */
            /*
        SQL92 only wants identifiers here (column names)
View Full Code Here

/*
* <A NAME="columnQualifiedNameItem">columnQualifiedNameItem</A>
*/
  final public void columnQualifiedNameItem(ResultColumnList columnList) throws ParseException, StandardException {
        ColumnReference         columnRef;
        ResultColumn    resultColumn;
    /*
        SQL92 only wants identifiers here (column names)
        but JBuilder expects table.column, so we allow the
        general form.
       */
 
View Full Code Here

/*
* <A NAME="columnNameItem">columnNameItem</A>
*/
  final public void columnNameItem(ResultColumnList columnList) throws ParseException, StandardException {
        String          columnName;
        ResultColumn    resultColumn;
    /* identifier() used to be columnName() */
            columnName = identifier(Limits.MAX_IDENTIFIER_LENGTH, true);
                /*
    ** Store the column names for the result columns in the
    ** result column list.  We don't know yet what valueNodes
View Full Code Here

TOP

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

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.