Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
This is not shouting. Error: SELECT ... INTO TABLE
Message
From
07/09/2005 18:52:20
 
 
To
07/09/2005 16:33:46
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01047494
Message ID:
01047547
Views:
9
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.
Previous
Reply
Map
View

Click here to load this message in the networking platform