Hello,

Carlos Guzmán Álvarez said the following on 11.03.2006 1:44:

>> Thanks i think i have a fix for this but will be applied only on v2.0=20
>> sources for now. Thanks very much
> 
> Changes are in CVS.

It seems that you're introduce new bug, while fixing that:

Now it is:

  else if (fetchResponse.Status == 100)
  {
    this.allRowsFetched = true;
  }

Error: after fetching all data it not leave loop and on the next
iteration tries to get inexistent data from the server.

It should be like this:

  else
  {
    if (fetchResponse.Status == 100)
      this.allRowsFetched = true;

    break;
  }

-- 
Oleg



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to