Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Make a cursor updatable
Message
From
06/08/2000 16:43:28
 
 
To
06/08/2000 15:10:38
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00401674
Message ID:
00401684
Views:
21
Give this a try....


SELECT inventory.stocknum AS stocknum;
FROM Tomparco!inventory AS inv_this_trans;
INTO CURSOR tempcursor;
WHERE inv_this_trans.trans_id = trans_num; &&trans_num is a variable
ORDER BY tempcursor.stocknum


USE DBF('tempcursor') AGAIN IN 0 ALIAS inv_this_trans
USE IN tempcursor

Now you can make changes to inv_this_trans as you would a free table (the cursor is actually a table in your TEMP directory)

when you close inv_this_trans, the file is automatically destoyed for you.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform