Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Make a cursor updatable
Message
De
06/08/2000 16:43:28
 
 
À
06/08/2000 15:10:38
Jimmy Ditta
Twin City Electronics
Monroe, Louisiane, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00401674
Message ID:
00401684
Vues:
22
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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform