net.sf.jsqlparser.statement.select.AllColumns Java Examples
The following examples show how to use
net.sf.jsqlparser.statement.select.AllColumns.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CloudSpannerResultSetMetaData.java From spanner-jdbc with MIT License | 5 votes |
private void initColumns(Select select) { columns = new ArrayList<>(); aliases = new ArrayList<>(); select.getSelectBody().accept(new SelectVisitorAdapter() { @Override public void visit(PlainSelect plainSelect) { for (SelectItem selectItem : plainSelect.getSelectItems()) { selectItem.accept(new SelectItemVisitor() { private boolean foundColumn = false; @Override public void visit(SelectExpressionItem selectExpressionItem) { selectExpressionItem.getExpression().accept(new ExpressionVisitorAdapter() { @Override public void visit(Column column) { registerColumn(column, selectExpressionItem.getAlias()); foundColumn = true; } }); if (!foundColumn) { registerColumn(null, selectExpressionItem.getAlias()); } } @Override public void visit(AllTableColumns allTableColumns) { registerAllTableColumns(allTableColumns.getTable()); } @Override public void visit(AllColumns allColumns) { for (Table table : tables) { registerAllTableColumns(table); } } }); } } }); }
Example #2
Source File: SelectItemVisitorImpl.java From DataPermissionHelper with Apache License 2.0 | 4 votes |
@Override public void visit(AllColumns allColumns) { }
Example #3
Source File: DMLWhereClauseVisitorAdapter.java From spanner-jdbc with MIT License | 4 votes |
@Override public void visit(AllColumns allColumns) { invalid = true; super.visit(allColumns); }
Example #4
Source File: ObjPD.java From openprodoc with GNU Affero General Public License v3.0 | 4 votes |
/** * Search in ANY object using SQL Syntax subset, similar to CMIS SQL * @param SQL complete query * @return and opened @Cursor * @throws PDException In any Error */ public Cursor SearchSelect(String SQL) throws PDException { if (PDLog.isDebug()) PDLog.Debug("ObjPD.SearchSelect>:"+SQL); Query QBE=null; try { Select ParsedSQL = (Select) CCJSqlParserUtil.parse(SQL); //-- Calculate Table Names ------------ TablesNamesFinder tablesNamesFinder = new TablesNamesFinder(); List<String> TableListSQL = tablesNamesFinder.getTableList(ParsedSQL); Vector <String> OPDTabs=CalculateTabs(TableListSQL); //-- Calculate Fields ------------- List<SelectItem> selectItems = ((PlainSelect)ParsedSQL.getSelectBody()).getSelectItems(); Vector<String> Fields=new Vector<String>(); if (!( selectItems.get(0) instanceof AllColumns)) for (int i = 0; i < selectItems.size(); i++) Fields.add(((SelectExpressionItem)selectItems.get(i)).getExpression().toString()); Record Rec=CalculateRec(Fields, OPDTabs); //-- Calculate Conds in Select ------------ Expression When = ((PlainSelect)ParsedSQL.getSelectBody()).getWhere(); Conditions CondSel=EvalExpr(When); //-- Check Additional-Security Conditions ---- Conditions FinalConds; Conditions AddedConds=NeededMoreConds(TableListSQL, OPDTabs); if (AddedConds==null) FinalConds=CondSel; else { FinalConds=new Conditions(); FinalConds.addCondition(AddedConds); FinalConds.addCondition(CondSel); } //-- Calculate Order ------------ Vector <String> Order=new Vector<String>(); Vector <Boolean> OrderAsc=new Vector<Boolean>(); List<OrderByElement> orderByElements = ((PlainSelect)ParsedSQL.getSelectBody()).getOrderByElements(); if (orderByElements!=null) for (int i = 0; i < orderByElements.size(); i++) { Order.add(orderByElements.get(i).getExpression().toString()); OrderAsc.add(orderByElements.get(i).isAsc()); } //-- Create Query -------------- QBE=new Query(OPDTabs, Rec, FinalConds, Order, OrderAsc); if (PDLog.isDebug()) PDLog.Debug("ObjPD.SearchSelect <"); } catch (Exception Ex) { Ex.printStackTrace(); PDException.GenPDException("Processing_SQL", Ex.getLocalizedMessage()); } return(getDrv().OpenCursor(QBE)); }