I have a VFP app in a NT server. The app is shared by a number of PCs with a mapped network driver. Some of the PCs are located thousands KM away physically. Followings are two SQL statements of the app called by a user from a PC:
select * from stock where state="WA" into cursor ctemp1 nofilter
select sum(purchasecost) from ctemp1 into cursor ctemp2
My questions are,
1. where is the cursor ctemp1, in the NT server or the location PC?
2. the data process, the second statement, occurs in the NT server or the location PC.
Any helps would be greatly appreciated.
Peter
select * from stock where state="WA" into cursor ctemp1 nofilter
select sum(purchasecost) from ctemp1 into cursor ctemp2
My questions are,
1. where is the cursor ctemp1, in the NT server or the location PC?
2. the data process, the second statement, occurs in the NT server or the location PC.
Any helps would be greatly appreciated.
Peter