Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IIF and FSIZE in SELECTs
Message
From
10/11/1998 14:57:19
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
IIF and FSIZE in SELECTs
Miscellaneous
Thread ID:
00156319
Message ID:
00156319
Views:
88
I want to create a cursor with known fields from one with unknown fields. Suppose cursor In does *not* have the field myField:

When I try:
SELECT IIF(FSIZE('MYFIELD','In')=0,'Default',In.myfield) AS outfield;
FROM In INTO CURSOR Out

I get "SQL field myfield not found"

However, if I leave out the alias:
SELECT IIF(FSIZE('MYFIELD','In')=0,'Default',myfield) AS outfield;
FROM In INTO CURSOR Out

...it works.

I'm nervous about this. Is it robust to use the second technique?
Next
Reply
Map
View

Click here to load this message in the networking platform