LIST filename WITH DATE.FIELD > TODAY
Of course, if you run that at one second before midnight...
Jim
Jim
Suppose you did have that as a SELECT in a program and the
SELECT did run for a minute or so, if the date changed when
it was 50% through the file, I assume the remaining 50%
would use the new date - is that correct ?
Suppose you had something like this in an SQL environment,
or even a jBASE environment accessing SQL tables, what would
happen with this statement if the date changed half way
through processing?
UPDATE something in sometable WHERE DATE.FIELD > CURR.DATE
Peter
Well, jBASE 4.1 and up supports DICT to DICT comparison, soyou can create a >DICT entry called TODAY that returns todays date, then say:LIST filename WITH DATE.FIELD > TODAY Of course, if you run that at one second before midnight... JimSuppose you did have that as a SELECT in a program and the SELECT did run for a minute or so, if the date changed when it was 50% through the file, I assume the remaining 50% would use the new date - is that correct ?
Jim