Hi,
I was debugging one of my project and found this case :
while select MyTable { // do some stuff } if (MyTable.RecId)// this statement is used to check if I go through my while select loop once { // Never hit this point, buffer is lost }
The problem is i'm loosing the buffer right after my while select loop (MyTable is NOT empty, and I'm going well through the loop). I'm pretty sure I've already used this synthax and it's worked. Is there any explanation viable ?
Thank you in advance.
PS : I bypass my problem with a flag but I want to understand what's happening here, why my buffer is lost
*This post is locked for comments