comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/ArcSDEStatement.java @ 274:ff1b7967e6b9

General CodecCleanup: Remove deprecated TODOS. Replaced Tabs against whitespaces Organize some Imports geo-backend/trunk@280 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 02 Nov 2009 10:53:06 +0000
parents 000e00592ba5
children 9063c5fcebf7
comparison
equal deleted inserted replaced
273:69ddef25e822 274:ff1b7967e6b9
130 values = values[0].split("from", 2); 130 values = values[0].split("from", 2);
131 String[] tableNames = values[1].toUpperCase().trim().split(","); 131 String[] tableNames = values[1].toUpperCase().trim().split(",");
132 String[] returnFields = values[0].replaceAll("select", "").trim().split(","); 132 String[] returnFields = values[0].replaceAll("select", "").trim().split(",");
133 String geometryColumnName = "N/N"; 133 String geometryColumnName = "N/N";
134 String byClause = null; 134 String byClause = null;
135 int byClausePos = where.indexOf("group by"); // TODO: Reihenfolge signifikant? 135 int byClausePos = where.indexOf("group by");
136 if (byClausePos < 0){ 136 if (byClausePos < 0){
137 byClausePos = where.indexOf("order by"); 137 byClausePos = where.indexOf("order by");
138 } 138 }
139 if (byClausePos > 0){ 139 if (byClausePos > 0){
140 byClause = where.substring(byClausePos); 140 byClause = where.substring(byClausePos);

http://dive4elements.wald.intevation.org