Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
This is not shouting. Error: SELECT ... INTO TABLE
Message
De
07/09/2005 18:52:20
 
 
À
07/09/2005 16:33:46
Jay Johengen
Altamahaw-Ossipee, Caroline du Nord, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
01047494
Message ID:
01047547
Vues:
8
This message has been marked as a message which has helped to the initial question of the thread.
>Like this:
>
>
>SELECT AcctCont.* ;
>	FROM AcctCont ;
>	WHERE DELETED() ;
>	INTO CURSOR crsAcctContDeleted
>
>

You have a INDEX ON DELETE(), and then VFP
it replaces this SELECT with this code:
SELECT 0
USE DBF("AcctCont") AGAIN ALIAS crsAcctContDeleted NOUPDATE
SET FILTER TO DELETED()
Since the SELECT are not subject to the present filters,
VFP cannot use crsAcctContDeleted in a following SELECT.

This is the motive for which NOFILTER exists.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform