Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP is not capable to run even simple select statements
Message
 
 
To
27/01/2002 15:35:44
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00611298
Message ID:
00611302
Views:
29
Your where clause always evaluates to .t.. You can just remove it.
select * ;
   from toode ;
      left OUTER JOIN artliik ;
        ON .f.
Yes, VFP Sql Select is limited. You've to live with it or switch to Sql Server or whatever. You can also request it enhancement in the future versions of VFP.


>The following simple code produces error
>
>SQL expression is to complex (VFP7 SP 1)
>
>Help says: Visual FoxPro ran out of memory ....
>
>I have 256 MB RAM. Why vfp is not capable to run this simple select ?
>
>
>
>CREATE CURSOR alloweditems ( liik c(10))
>CREATE CURSOR artliik ( liik c(1))
>CREATE CURSOR toode ( f1 c(1))
>SYS(3055,2040)
>select * ;
>   from toode ;
>      left OUTER JOIN artliik ;
>        ON .f. ;
>   where .t. OR ;
>  (.f. AND artliik.liik in (select * from alloweditems ) )
>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform