Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Debug this SQL statement...
Message
From
03/04/1998 00:37:07
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Debug this SQL statement...
Miscellaneous
Thread ID:
00089155
Message ID:
00089155
Views:
59
Tell me whu this VFP code does not work:

select (this.Field_List);
from (this.table_name);
order by (this.Order_By);
into array (this.gaData)


So therefore I had to go this route to get it to work:

cField_List=this.field_list
cOrder_By=this.order_by

select &cField_List;
from (this.table_name);
order by &cOrder_By;
into array this.gaData


SQL doesn't seem to like (this.whatever)?
Next
Reply
Map
View

Click here to load this message in the networking platform