xsharp.eu • Different between Debug and Release in VS2017 - Page 3
Page 3 of 3

Different between Debug and Release in VS2017

Posted: Wed Aug 09, 2017 5:46 pm
by Frank Müßner
Hi Chris, Hi Wolfgang,

I have found it!! :-)

See Picture
xs1.gif
xs1.gif (9.57 KiB) Viewed 216 times

SqlDB is True !!

but

Do While ! SqlDB:Eof
Server:=SqlDB:FIELDGET(#pgserverip) -> there the crash
ENDDO

will called.
And then this Error. That is only in Release Version is coincidence, because coincidence. I can reproduce this with Debug Version.

Strange. And Intellisense is not more active, again.

Frank

Different between Debug and Release in VS2017

Posted: Wed Aug 09, 2017 8:09 pm
by Chris
Hi Frank,

So what happens when you step over this line, an error message with the exact exception information should pop up.

Btw, there is a possibility that the highlighted in yellow color line of code is not really executed, in some cases the debugger shows one line below or above the actual line (this is in our todo list to fix). Please change the code like this:

Do While ! SqlDB:Eof
local dummy as int
dummy := 1
dummy += dummy
? dummy
Server:=SqlDB:FIELDGET(#pgserverip) -> there the crash
ENDDO

and step over the code again, does it stop again in the fieldget() line, even when SqlDB:Eof == true?

Chris

Different between Debug and Release in VS2017

Posted: Thu Aug 10, 2017 6:32 am
by Frank Müßner
Hi Chris,

the Error after this Call is:
error1.png
error1.png (72.41 KiB) Viewed 216 times

See the different values in Debugger:
error2.png
error2.png (102.31 KiB) Viewed 216 times

Solution is to call SqlDB:gotop() after the Select. I don´t know if this is only with SqlSelect.


Frank