Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Debug this SQL statement...
Message
De
03/04/1998 00:37:07
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Debug this SQL statement...
Divers
Thread ID:
00089155
Message ID:
00089155
Vues:
55
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)?
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform