comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/SDEResultSet.java @ 137:d43ff60acda4

Some little performanceimprofments and Bugfixes geo-backend/trunk@52 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 09 Sep 2009 15:23:43 +0000
parents 5a583cff97ea
children ff1b7967e6b9
comparison
equal deleted inserted replaced
136:2e8d3f552f37 137:d43ff60acda4
765 */ 765 */
766 public boolean next() throws SQLException { 766 public boolean next() throws SQLException {
767 767
768 boolean next = this.mRows.size() > this.cursor; 768 boolean next = this.mRows.size() > this.cursor;
769 if (next){ 769 if (next){
770 log.debug("Zeile "+(cursor+1)+" von "+this.mRows.size()+" wird angesteuert."); 770 //log.debug("Zeile "+(cursor+1)+" von "+this.mRows.size()+" wird angesteuert.");
771 this.currentRow = this.mRows.get(this.cursor); 771 this.currentRow = this.mRows.get(this.cursor);
772 this.cursor++; 772 this.cursor++;
773 }else{ 773 }else{
774 this.currentRow = null; 774 this.currentRow = null;
775 } 775 }

http://dive4elements.wald.intevation.org