Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Did I miss something?
Message
 
 
To
07/02/2002 11:22:35
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00615839
Message ID:
00616704
Views:
20
>Hey Jim, how ya doin'?
>
>This is getting off the topic a little, but it's something that's always bugged me ... is there any reason for using this:
>
>LOCAL lcAlias
>lcAlias = ALIAS()
>
>*--Do stuff
>
>* Now restore the work area
>IF NOT EMPTY(lcAlias)
>  SELECT (lcAlias)
>ELSE
>  SELECT 0
>ENDIF
>
>instead of this:
>
>LOCAL lnSelect
>lnSelect = SELECT()
>
>*--Do stuff
>
>* Now restore the work area
>SELECT (lnSelect)
>
>
>The second method seems much cleaner and simpler than the first, and yet I see the first one used frequently (which I change whenever possible to the second) ... is there any performance issue or is this just your personal preference?
>
Hi Bonnie,

I also use the second method for the same reason as you and because it suits my style of programming.
The first method bring you back to the table alias wich could be or could be not in the same work area as at the begginnig of the code. The second method bring you back to the original work area. If the code in between closes and opens table from this work area in the another workarea and opens another table in that work area than you would end up on wrong table.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform