Re: Re: Error correction for esql.xsl

2002-01-08 Thread Torsten Curdt
On Tue, 8 Jan 2002, Enke Michael wrote: > Hi Torsten, > you have forgotten to insert one line: > _esql_query.setKeepGoing(false); > > If this line is missing the last DB entry will be repeated infinitely. > > Michael Thanks! Fixed it. Maybe you could send a "diff -u" patch next time, please?! W

Re: Re: Error correction for esql.xsl

2002-01-08 Thread Enke Michael
Hi Torsten, you have forgotten to insert one line: _esql_query.setKeepGoing(false); If this line is missing the last DB entry will be repeated infinitely. Michael Torsten Curdt wrote: > > On Mon, 7 Jan 2002, Enke Michael wrote: > > > Hi committer, > > this doesn't work because the last but

Re: Error correction for esql.xsl

2002-01-07 Thread Torsten Curdt
On Mon, 7 Jan 2002, Enke Michael wrote: > Hi committer, > this doesn't work because the last but one is repeated nonterminating: > > > //checking out early? > if (_esql_query.getMaxRows() != -1 && _esql_query.getCurrentRow() - >_esql_query.getSkipRows() == _esql_query.getMaxRows() - 1 ) {

Error correction for esql.xsl

2002-01-07 Thread Enke Michael
Hi committer, this doesn't work because the last but one is repeated nonterminating: //checking out early? if (_esql_query.getMaxRows() != -1 && _esql_query.getCurrentRow() - _esql_query.getSkipRows() == _esql_query.getMaxRows() - 1 ) { } else {//if not, advance normally _es