key word question
I'm looking over a program that someone else wrote in FoxPro. One of the lines in there says:
APPEND FROM 'someDB' FOR EMPTY(someField)
My ? is what does the FOR mean? I've not come accross it before and it is about impossible to search for, being that 'FOR' is too common a word.
Thanks
[348 byte] By [
spuppett] at [2007-11-19 7:41:17]

# 1 Re: key word question
it is about impossible to search for, being that 'FOR' is too common a word.
try:
"APPEND FROM" "FOR EMPTY" FoxPro
in google :D
The " is very important here ;) .
Best regards,
Krzemo.
Krzemo at 2007-11-9 13:40:50 >

# 2 Re: key word question
I found out its basicly like a WHERE clause, execept for an APPEND.