Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
USE command
Message
 
À
28/10/1999 17:28:52
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00283418
Message ID:
00283679
Vues:
12
>Hi Guys,
>
>If I use the following code and I end up with 'YTDDET.dbf' is a read-only. I also notice that it will work once, the second time I got this message.
>
>SELECT * FROM YTDDET WHERE BETW( ACCBRN, "1000","9999");
>AND !INLIST( ACCBRN,"9612") INTO CURSOR TEMP
>
>INDEX ON BDATE TAG BDATE

Add a NOFILTER command to the select statement.
SELECT * ;
  FROM YtdDet ;
 WHERE BETWEEN( AccBrn, "1000","9999") ;
   AND !INLIST( ACCBRN,"9612") ;
 NOFILTER ;
 INTO CURSOR TEMP
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform