I have uploaded an installer for Xs2Ado 5.0.6.
This new build fixes an error when a component (such as bBrowser) does a Skip (0) when the server is at EOF.
https://www.xsharp.eu/itm-downloads?fol ... 252Fxs2ado
Robert
New version of Xs2Ado 5.0.6
New version of Xs2Ado 5.0.6
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
-
- Posts: 46
- Joined: Mon Sep 26, 2016 12:59 pm
Re: New version of Xs2Adp 5.0.6
Hi Robert,
there is any chance to have this fix for VO2Ado too?
thanks!
Stefano
there is any chance to have this fix for VO2Ado too?
thanks!
Stefano
Re: New version of Xs2Adp 5.0.6
Stefano,
Vo2Ado has not been changed in 8 years. I am not planning to update it.
What you can do is in your subclass of the AdoServer add a skip method like this:
Robert
Vo2Ado has not been changed in 8 years. I am not planning to update it.
What you can do is in your subclass of the AdoServer add a skip method like this:
Code: Select all
METHOD Skip(nToSkip) CLASS MyAdoServer
IF nToSkip == 0 .and. SELF:lEof
RETURN FALSE
ENDIF
RETURN SUPER:Skip(nToSkip)
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
-
- Posts: 46
- Joined: Mon Sep 26, 2016 12:59 pm
Re: New version of Xs2Adp 5.0.6
Robert,
thanks a lot!
Stefano
thanks a lot!
Stefano
Re: New version of Xs2Adp 5.0.6
Stefano,stecosta66 wrote: ↑Mon Feb 19, 2024 5:21 am Hi Robert,
there is any chance to have this fix for VO2Ado too?
thanks!
Stefano
It may be that the problem does not exist in VO2Ado. I have ported an application from VO to X# (using VO2Ado and Xs2Ado) and only the X# version had these specific errors.
Kees.
-
- Posts: 46
- Joined: Mon Sep 26, 2016 12:59 pm
Re: New version of Xs2Ado 5.0.6
Kees,
I've faced this problem myself with Vo2Ado and bBrowser.
Actually I'm still on VO but planning to switch to X# in the next few months
Stefano
I've faced this problem myself with Vo2Ado and bBrowser.
Actually I'm still on VO but planning to switch to X# in the next few months
Stefano