Przemek, Of course you are right with this example but try to add a DBsetfilter( NIL, ".T." ) before dbskip(-1) (or any filter that produce a file without any visible records and under (x)Harbour you get .T. .F. 0 1 and under clipper 5.3 you get .T. .T. 0 1
Thanks in advance Mike Evans -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw Czerpak Sent: Tuesday, February 12, 2008 1:10 PM To: Harbour Project Main Developer List. Subject: Re: [Harbour] Eof == .T. on Phantom record On Tue, 12 Feb 2008, Patrick Mast wrote: > Hello Przemek, > Did you receive my private mail regarding "Eof == .T. on Phantom record"? > Thanks! It's normal Clipper behavior replicated in [x]Harbour: proc main(rdd) rddSetDefault(iif(empty(rdd),"DBFCDX",rdd)) ? rddSetDefault() dbCreate("_tst",{{"F1","C",1,0}}) use _tst ? bof(), eof(), lastrec(), recno() dbSkip(-1) ? bof(), eof(), lastrec(), recno() return In the above code we are at phantom record but after dbSkip(-1) the EOF flag is cleared. In such way work all CL52, SIX3 and CL53 RDDs. Also [x]Harbuor's DBF, DBFCDX, DBFNTX. Only our ADS RDD do not always respect it (f.e. in this example) and this is side effect of code which hides top phantom record. I said many times in the past that EOF() checking to detect phantom record is not enough even in standard Clipper RDDs. Additionally some RDDs may not support phantom records at all or can have both: top and bottom ones, f.e. ADS has both (see above) though we are hiding this in our code. I suggested to introduce new function like isPahntomRec() to detect such situation. Of course we can also change current code to not be Clipper compatible. It will be enough to change the condition which exists at the end of SKIP methods: /* Update Bof and Eof flags */ if( fForward ) pArea->fBof = FALSE; else pArea->fEof = FALSE; and update only fBof flag but it may introduce some other problems for code which strictly need Clipper compatibility though I do not think if many people knows how exactly this flag are updated by Clipper. best regards, Przemek _______________________________________________ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour _______________________________________________ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour